diff options
author | Guangxiong Lin <[email protected]> | 2021-09-11 18:49:25 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2021-09-11 18:49:25 +0800 |
commit | 7a2ba4fa9dbae8aa7c05a51d569217d0742e586e (patch) | |
tree | 3e188ea54650c4e320eb5326367b9d0bc575870f /.vim/plugin/fzf.vim | |
parent | 0df1188f17268ca5f35d763466d310873446aed3 (diff) | |
download | dotfiles-7a2ba4fa9dbae8aa7c05a51d569217d0742e586e.tar.gz dotfiles-7a2ba4fa9dbae8aa7c05a51d569217d0742e586e.tar.bz2 dotfiles-7a2ba4fa9dbae8aa7c05a51d569217d0742e586e.zip |
Move from leaderf.vim to fzf.vim
Diffstat (limited to '.vim/plugin/fzf.vim')
-rw-r--r-- | .vim/plugin/fzf.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.vim/plugin/fzf.vim b/.vim/plugin/fzf.vim new file mode 100644 index 0000000..32994a1 --- /dev/null +++ b/.vim/plugin/fzf.vim @@ -0,0 +1,11 @@ +let g:fzf_command_prefix = 'Fzf' + +noremap <leader>ff :FzfFiles<CR> +noremap <leader>fbf :FzfBuffers<CR> +noremap <leader>fm :FzfHistory<CR> +noremap <leader>ft :FzfTags<CR> +noremap <leader>fbt :FzfBtags<CR> +noremap <leader>fa :FzfAg<space> +noremap <leader>fc :FzfCommands<CR> +noremap <leader>fgc :FzfCommits<CR> +noremap <leader>fl :FzfLines<CR> |