Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lambdalisue/vim-fall
🍂 Another fuzzy finder designed for Vim and Neovim and implemented in Denops
https://github.com/lambdalisue/vim-fall
denops fuzzy-finder neovim vim vim-fall
Last synced: 6 days ago
JSON representation
🍂 Another fuzzy finder designed for Vim and Neovim and implemented in Denops
- Host: GitHub
- URL: https://github.com/lambdalisue/vim-fall
- Owner: lambdalisue
- License: mit
- Created: 2024-03-01T12:49:53.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-28T02:04:02.000Z (11 days ago)
- Last Synced: 2024-10-28T05:58:13.609Z (10 days ago)
- Topics: denops, fuzzy-finder, neovim, vim, vim-fall
- Language: TypeScript
- Homepage: https://jsr.io/@lambdalisue/vim-fall
- Size: 771 KB
- Stars: 42
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🍂 fall
[![Test](https://github.com/lambdalisue/vim-fall/actions/workflows/test.yml/badge.svg)](https://github.com/lambdalisue/vim-fall/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/lambdalisue/vim-fall/graph/badge.svg?token=IsZ3yEM1by)](https://codecov.io/gh/lambdalisue/vim-fall)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![vim help](https://img.shields.io/badge/vim-%3Ah%20fall-orange.svg)](doc/fall.txt)![Screencast](https://github.com/lambdalisue/vim-fall/assets/546312/fca60054-73db-4bb1-82de-1262f1542862)
Fall (_vim-fall_) is an abbreviation for "Filter All," another fuzzy finder
designed for Vim and Neovim and implemented in [Denops].**Alpha version. Please note that any changes, including those that may be
backward incompatible, will be implemented without prior announcements.**[Denops]: https://github.com/vim-denops/denops.vim
## Requirements
Users must install [Deno].
[Deno]: https://deno.land
## Installation
To install [Denops] and this plugin using your preferred plugin manager, such as
[vim-plug], add the following lines to your Vim configuration:```vim
Plug 'vim-denops/denops.vim'
Plug 'lambdalisue/vim-fall'
```[vim-plug]: https://github.com/junegunn/vim-plug
## Usage
Use `:Fall` command to open the fuzzy finder. The command accepts the following
arguments:```
Fall {source} {source_args}...
```For example, if you'd like to use `file` source, you can use the following
```
Fall file
```Or `line` source with `README.md` as an argument
```
Fall line README.md
```## Similar Projects
- [ddu.vim](https://github.com/Shougo/ddu.vim)
A highly customizable and
extensible fuzzy finder for Vim/Neovim written in Denops.
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
The de
facto standard fuzzy finder for Neovim.
- [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim)
A classic and famous
fuzzy finder for Vim.## License
The code in this repository follows the MIT license, as detailed in
[LICENSE](./LICENSE). Contributors must agree that any modifications submitted
to this repository also adhere to the license.