diff options
Diffstat (limited to '.vim/plugin/fuzz.vim')
| -rw-r--r-- | .vim/plugin/fuzz.vim | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.vim/plugin/fuzz.vim b/.vim/plugin/fuzz.vim deleted file mode 100644 index 0e1cb55..0000000 --- a/.vim/plugin/fuzz.vim +++ /dev/null @@ -1,16 +0,0 @@ -" skip this, we have vim-clap now!!! -finish - -if exists('g:loaded_fuzz') - finish -endif -let g:loaded_fuzz = 1 -let g:fuzz_prompt = '❯' - -nmap <silent> ff :call fuzz#files()<CR> -nmap <silent> fb :call fuzz#buffers()<CR> -nmap <silent> fc :call fuzz#commands()<CR> -nmap <silent> fr :Rg<space> - -command! -nargs=* -complete=custom,fuzz#cmdoptions Fuzz :call fuzz#exec(<f-args>) -command! -nargs=* Rg :call fuzz#rg(<f-args>) |