From f5d56602df70950de6b7d40966b00c9939c81763 Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Sun, 26 Jan 2020 17:16:07 +0100 Subject: Intial commit of v2 See https://drewdevault.com/2019/12/30/dotfiles.html --- .vim/plugin/fuzz.vim | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vim/plugin/fuzz.vim (limited to '.vim/plugin/fuzz.vim') diff --git a/.vim/plugin/fuzz.vim b/.vim/plugin/fuzz.vim new file mode 100644 index 0000000..0e1cb55 --- /dev/null +++ b/.vim/plugin/fuzz.vim @@ -0,0 +1,16 @@ +" 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 ff :call fuzz#files() +nmap fb :call fuzz#buffers() +nmap fc :call fuzz#commands() +nmap fr :Rg + +command! -nargs=* -complete=custom,fuzz#cmdoptions Fuzz :call fuzz#exec() +command! -nargs=* Rg :call fuzz#rg() -- cgit 1.4.1