summary refs log tree commit diff
path: root/.vim/plugin/fuzz.vim
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-02-20 21:27:26 +0100
committerRobert Günzler <r@gnzler.io>2021-04-26 02:09:43 +0200
commit1996ef15613f2d4773017128bba1a719a1b63a19 (patch)
treeaa291b56947f0f710c96c62758990de3b2939bba /.vim/plugin/fuzz.vim
parent30451238df36d238fea816f01ca987853c6562a5 (diff)
Move to lua based vimrc
Diffstat (limited to '.vim/plugin/fuzz.vim')
-rw-r--r--.vim/plugin/fuzz.vim16
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>)