From 07797b39851da045aa1bfd0289de0858a1377c48 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Sun, 18 Dec 2022 20:29:55 +0100 Subject: Switched to nvim and neovide --- plugin/cscope.vim | 57 ------------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 plugin/cscope.vim (limited to 'plugin/cscope.vim') diff --git a/plugin/cscope.vim b/plugin/cscope.vim deleted file mode 100644 index b9ca444..0000000 --- a/plugin/cscope.vim +++ /dev/null @@ -1,57 +0,0 @@ -"======================================================================================================================= -" CSCOPE: http://vim.wikia.com/wiki/Cscope -"======================================================================================================================= - -augroup MAX_CSCOPE - if has('cscope') " compiled with cscope support? - set cscopetag " CTRL-] uses cscope first, then ctags - set cscopeverbose - - if has('quickfix') - set cscopequickfix=s+,c+,d+,i+,t+,e+ - endif - - if has('menu') - 1001menu &Cscope.find.c\ symbol - \s - \ :cscope find s <:cR> - 1001menu &Cscope.find.definition - \g - \ :cscope find g <:cR> - 1001menu &Cscope.find.functions\ called\ by\ this - \d - \ :cscope find d <:cR> - 1001menu &Cscope.find.functions\ calling\ this - \c - \ :cscope find c <:cR> - 1001menu &Cscope.find.text\ string - \t - \ :cscope find t <:cR> - 1001menu &Cscope.find.egrep\ pattern - \e - \ :cscope find e <:cR> - 1001menu &Cscope.find.this\ file - \f - \ :cscope find f <:cR> - 1001menu &Cscope.find.files\ including\ this\ file - \i - \ :cscope find i <:cR> - 1001menu &Cscope.find.places\ where\ this\ symbol\ is\ assigned\ a\ value - \a - \ :cscope find a <:cR> - 1001menu &Cscope.-Sep1- - \ : - 1001menu &Cscope.create\ and\ add\ database - \ :cscope kill -1:execute '!find -type f -regex ".*\.\(c\\|h\\|cpp\\|cxx\\|hh\\|hpp\\|hxx\)$" cscope -i- -b -q -v':cscope add . - 1001menu &Cscope.-Sep2- - \ : - 1001menu &Cscope.add\ \. - \ :cscope add . - 1001menu &Cscope.show - \ :cscope show - 1001menu &Cscope.reset - \ :cscope reset - endif - endif -augroup END " MAX_CSCOPE - -- cgit v1.2.3