All Projects β†’ mattn β†’ vim-fz

mattn / vim-fz

Licence: MIT License
Ultra Fast Fuzzy Finder for Vim8

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to vim-fz

vim-filetype-formatter
Format program files in vim using your favorite command line formatter
Stars: ✭ 21 (-67.19%)
Mutual labels:  vim8
Line-Clipper
πŸ’»Efficient navigation between browser and IDE while working on GitHub.
Stars: ✭ 64 (+0%)
Mutual labels:  fuzzyfinder
neomake-multiprocess
A vim plugin for running multiple process asynchronously base on neomake.
Stars: ✭ 36 (-43.75%)
Mutual labels:  vim8
asyncomplete-nextword.vim
Provides intelligent English autocomplete for asyncomplete.vim via nextword
Stars: ✭ 43 (-32.81%)
Mutual labels:  vim8
Yoyo-leaf
Yoyo-leaf is an awesome command-line fuzzy finder.
Stars: ✭ 49 (-23.44%)
Mutual labels:  fuzzyfinder
nvim-cm-racer
Neovim/vim8 completion for rust
Stars: ✭ 17 (-73.44%)
Mutual labels:  vim8
Skim
Fuzzy Finder in rust!
Stars: ✭ 2,977 (+4551.56%)
Mutual labels:  fuzzyfinder
Fzy
πŸ” A simple, fast fuzzy finder for the terminal
Stars: ✭ 2,295 (+3485.94%)
Mutual labels:  fuzzyfinder
Leaderf
An efficient fuzzy finder that helps to locate files, buffers, mrus, gtags, etc. on the fly for both vim and neovim.
Stars: ✭ 1,733 (+2607.81%)
Mutual labels:  fuzzyfinder
Vim Lsp
async language server protocol plugin for vim and neovim
Stars: ✭ 2,230 (+3384.38%)
Mutual labels:  vim8

vim-fz

Ultra Fast Fuzzy finder for Vim8 and NeoVim.

But very very experimental!

Fz

Usage

:Fz

Or type ,f

APIs

type: cmd

nnoremap <C-p> :execute system('git rev-parse --is-inside-work-tree') =~ 'true'
      \ ? fz#run({ 'type': 'cmd', 'cmd': 'git ls-files' })
      \ : 'Fz'<CR>

type: list

command! FzColors call fz#run({
    \ 'type': 'list',
    \ 'list': uniq(map(split(globpath(&rtp, "colors/*.vim"), "\n"), "substitute(fnamemodify(v:val, ':t'), '\\..\\{-}$', '', '')")),
    \ 'accept': {result->execute('colorscheme ' . result['items'][0])},
    \ })

Requirements

  • gof
  • vim8 or neovim

Installation

$ go get github.com/mattn/gof
  • Pathogen
    • git clone https://github.com/mattn/vim-fz.git ~/.vim/bundle/vim-fz
  • vim-plug
    • Plug 'mattn/vim-fz'
  • Vim packages
    • git clone https://github.com/mattn/vim-fz.git ~/.vim/pack/plugins/start/vim-fz

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].