diff options
author | Guangxiong Lin <[email protected]> | 2021-09-16 23:36:06 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2021-09-16 23:36:06 +0800 |
commit | a8639470b78b630f438c63282ee72516dc02d277 (patch) | |
tree | 6ca0e6c9b6ecd93e9372c95f0a97020cb9a9bbfa /.vim | |
parent | e241d28de0a3f85f5e8f493dc6d41747a97f799f (diff) | |
download | dotfiles-a8639470b78b630f438c63282ee72516dc02d277.tar.gz dotfiles-a8639470b78b630f438c63282ee72516dc02d277.tar.bz2 dotfiles-a8639470b78b630f438c63282ee72516dc02d277.zip |
Add fzf keymap
Diffstat (limited to '.vim')
-rw-r--r-- | .vim/plugin/fzf.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.vim/plugin/fzf.vim b/.vim/plugin/fzf.vim index d6d7dc9..04aaeda 100644 --- a/.vim/plugin/fzf.vim +++ b/.vim/plugin/fzf.vim @@ -1,6 +1,7 @@ let g:fzf_command_prefix = 'Fzf' noremap <leader>ff :FzfFiles<CR> +noremap <leader>fgf :FzfGFiles<CR> noremap <leader>fbf :FzfBuffers<CR> noremap <leader>fm :FzfHistory<CR> noremap <leader>ft :FzfTags<CR> @@ -9,4 +10,5 @@ noremap <leader>fa :FzfAg<space> noremap <leader>fr :FzfRg<space> noremap <leader>fc :FzfCommands<CR> noremap <leader>fgc :FzfCommits<CR> +noremap <leader>fgbc :FzfBCommits<CR> noremap <leader>fl :FzfLines<CR> |