summaryrefslogtreecommitdiff
path: root/.lvimrc
diff options
context:
space:
mode:
authorSimon Howard2009-05-26 21:13:18 +0000
committerSimon Howard2009-05-26 21:13:18 +0000
commit7b70d415d1acf162e6fe6f136148cf30ba4e3daa (patch)
treed9587a1ed33f1e0826b9608697022f61e278f881 /.lvimrc
parentbd20fc62a36475e7a9fff269784d0f1e5c1128b4 (diff)
downloadchocolate-doom-7b70d415d1acf162e6fe6f136148cf30ba4e3daa.tar.gz
chocolate-doom-7b70d415d1acf162e6fe6f136148cf30ba4e3daa.tar.bz2
chocolate-doom-7b70d415d1acf162e6fe6f136148cf30ba4e3daa.zip
Set appropriate vim 'tags' variable for ctags files.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1531
Diffstat (limited to '.lvimrc')
-rw-r--r--.lvimrc25
1 files changed, 25 insertions, 0 deletions
diff --git a/.lvimrc b/.lvimrc
index e37c50f9..cc2893d9 100644
--- a/.lvimrc
+++ b/.lvimrc
@@ -4,3 +4,28 @@ set tabstop=8
set softtabstop=4
set shiftwidth=4
+" Add all tag files to tags path.
+
+let topdir = findfile("configure.in", ".;")
+let topdir = substitute(topdir, "configure.in", "", "")
+
+" Check tags file in current dir:
+set tags+=tags
+
+" Add tag files in parent directories:
+let tagfiles = findfile("tags", ".;", -1)
+
+" Add tag files for libraries:
+call add(tagfiles, topdir . "textscreen/tags")
+call add(tagfiles, topdir . "pcsound/tags")
+
+for tagfile in tagfiles
+ " Don't go beyond the project top level when adding parent dirs:
+ if stridx(tagfile, topdir) >= 0
+ exec "set tags+=" . tagfile
+ endif
+endfor
+
+unlet topdir
+unlet tagfiles
+