From 3ffea46a4863abdc7f58a9c9420b0db0fcdc5dc8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philippe=20H=C3=BCrlimann?=
Date: Thu, 5 Aug 2021 22:30:30 +0200
Subject: [PATCH] Remove cscope settings
---
init.vim | 23 -----------------------
1 file changed, 23 deletions(-)
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