summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2012-03-14 18:44:25 +0100
committerHugues Hiegel <hugues@hiegel.fr>2012-03-14 18:44:25 +0100
commitf7bbccc312ee95809a74078bf632a4309b7d40a2 (patch)
tree7f0065450148c2d16571bd61ebb1d9ae0f99494d
parentd65d466a132fa4b12c610f7357a84cb62c38a7ca (diff)
[Cscope] automagic.
-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>