This plugin is mainly used for locating files, buffers, mrus, tags in large project.

  • Written in Python.
  • Support fuzzy and regex searching.
  • Manage buffers and mrus.
  • Open multiple files at once.
  • Extensible.

Screenshots

Requirements

  • Only support vIM7.4.330 or higher after V1.01.
  • vim compiled with Python support, you can check by using echo has('python') or echo has('python3') to see if the result is 1; Make sure that your python2 version is Python 2.7 or higher and python3 version is Python 3.1 or higher.

Performance

LeaderF is already very fast. If you want better performance, install the C extension of the fuzzy matching algorithm, which is more than 10 times faster. To install the C extension, follow the below:

After running any command of LeaderF, check the value of echo g:Lf_fuzzyMatch_C, if the value is 1, it means the C extension is loaded sucessfully.

Usage

Command Description
:LeaderfFile

<leader>f
search files
:LeaderfFile [directory] search files under the directory specified
:LeaderfFileFullScreen search files, LeaderF window take up full screen
:LeaderfBuffer

<leader>b
search listed buffers
:LeaderfBufferAll search all buffers
:LeaderfMru search most recently used files
:LeaderfMruCwd search MRU in current working directory
:LeaderfTag navigate tags using the tags file
:LeaderfBufTag navigate tags in current buffer
:LeaderfBufTagAll navigate tags in all listed buffers
:LeaderfFunction navigate functions or methods in current buffer
:LeaderfFunctionAll navigate functions or methods in all listed buffers
:LeaderfLine search a line in current buffer
:LeaderfLineAll search a line in all listed buffers
:LeaderfHistoryCmd execute the command in the history
:LeaderfHistorySearch execute the search command in the history
:LeaderfSelf execute the commands of itself
:LeaderfHelp navigate the help tags
:LeaderfColorscheme switch between colorschemes

Once LeaderF is launched:

Command Description
<C-C> quit from LeaderF
<C-R> switch between fuzzy search mode and regex mode
<C-F> switch between full path search mode and name only search mode
<ESC> switch to normal mode
<C-V>

<S-Insert>
paste from clipboard
<C-U> clear the prompt
<C-J>

<Down>
move the cursor downward in the result window
<C-K>

<Up>
move the cursor upward in the result window
<2-LeftMouse>

<CR>
open the file under cursor or selected(when multiple files are selected)
<C-X> open in horizontal split window
<C-]> open in vertical split window
<C-T> open in new tabpage
<F5> refresh the cache
<C-LeftMouse>

<C-S>
select multiple files
<S-LeftMouse> select consecutive multiple files
<C-A> select all files
<C-L> clear all selections
<BS> delete the preceding character in the prompt
<Del> delete the current character in the prompt
<Home> move the cursor to the begin of the prompt
<End> move the cursor to the end of the prompt
<Left> move the cursor one character to the left in the prompt
<Right> move the cursor one character to the right in the prompt
<C-P> preview the result

Input formats:

  • In NameOnly mode (fuzzy)

    ‘abc’ is interpreted as vim’s regexp ‘a.\{-}b.\{-}c’. If the first character you input is ‘; ‘, then the searching will be the same as in FullPath mode. If you input string as ‘abc; def’, then ‘abc’ will match the file name and ‘def’ will match the directory name.

  • In FullPath mode (fuzzy)

    Same as in NameOnly mode except that the pattern will match the full path but not the file name only.

  • In Regexp mode

    The input string is the same as the Vim’s regexp.

License

This plugin is released under the Apache License, Version 2.0 (the “License”).