summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 92e382f..6b67d44 100644
--- a/vimrc
+++ b/vimrc
@@ -106,7 +106,9 @@ elseif filereadable( expand("$PWD/ctags.out") )
elseif has("cscope")
if filereadable( expand("$PWD/cscope.out") )
set cst
- cscope add $PWD/cscope.out
+
+ " Automagically done...
+ "cscope add $PWD/cscope.out
" cscope macros
nmap <ESC>c :execute CscopeSearch(expand("<cword>"))<CR>