diff options
-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> |