summary refs log tree commit diff
path: root/vim/plugin/ag.vim
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-01-17 07:17:17 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-01-17 07:17:17 -0800
commite58a6497d050480c56b9689004b9ded1cc2b0b9d (patch)
tree291b4ae5b114d06d96498f2312a9ab3e466ca501 /vim/plugin/ag.vim
parent[emacs] some small changes to the UI. (diff)
downloademacs.d-e58a6497d050480c56b9689004b9ded1cc2b0b9d.tar.gz
Remove configuration for `vim` and all the scripts
No need to carry a configuration for `vim` anymore, and most of the
scripts are either useless, or have moved to the *toolbox* repository on
GitHub (and are now in go, and sometimes with tests).
Diffstat (limited to 'vim/plugin/ag.vim')
-rw-r--r--vim/plugin/ag.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/vim/plugin/ag.vim b/vim/plugin/ag.vim
deleted file mode 100644
index 053f213..0000000
--- a/vim/plugin/ag.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-" NOTE: You must, of course, install ag / the_silver_searcher
-command! -bang -nargs=* -complete=file Ag call ag#Ag('grep<bang>',<q-args>)
-command! -bang -nargs=* -complete=file AgBuffer call ag#AgBuffer('grep<bang>',<q-args>)
-command! -bang -nargs=* -complete=file AgAdd call ag#Ag('grepadd<bang>', <q-args>)
-command! -bang -nargs=* -complete=file AgFromSearch call ag#AgFromSearch('grep<bang>', <q-args>)
-command! -bang -nargs=* -complete=file LAg call ag#Ag('lgrep<bang>', <q-args>)
-command! -bang -nargs=* -complete=file LAgBuffer call ag#AgBuffer('lgrep<bang>',<q-args>)
-command! -bang -nargs=* -complete=file LAgAdd call ag#Ag('lgrepadd<bang>', <q-args>)
-command! -bang -nargs=* -complete=file AgFile call ag#Ag('grep<bang> -g', <q-args>)
-command! -bang -nargs=* -complete=help AgHelp call ag#AgHelp('grep<bang>',<q-args>)
-command! -bang -nargs=* -complete=help LAgHelp call ag#AgHelp('lgrep<bang>',<q-args>)