From: Philippe Hürlimann
Date: Thu, 5 Aug 2021 20:30:30 +0000 (+0200)
Subject: Remove cscope settings
X-Git-Url: https://git.hurlimann.org/?a=commitdiff_plain;h=3ffea46a4863abdc7f58a9c9420b0db0fcdc5dc8;p=vimfiles.git
Remove cscope settings
---
diff --git a/init.vim b/init.vim
index e473733..b2bda97 100644
--- a/init.vim
+++ b/init.vim
@@ -110,29 +110,6 @@ set nobackup
set hlsearch
-if has("cscope")
- set csto=0
- set cst
- set nocsverb
- if filereadable("cscope.out")
- cs add cscope.out
- elseif $CSCOPE_DB != ""
- cs add $CSCOPE_DB
- endif
- set csverb
-
- "s: Find this C symbol
- "g: Find this definition
- "d: Find functions called by this function
- "c: Find functions calling this function
- "a: Find places where this symbol is assigned a value
- nnoremap