From 0d87455f0dbb07fae67db9cbd2a3d77bbd91a680 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Thu, 28 Mar 2013 13:15:58 +0100 Subject: disabled --sort=foldcase --sort=foldcase has the effect that all binary searches must be done case insensitive, i.e. in Vim either 'set ignorecase' is needed to find a tag at all (and then you may get more than you asked for) unless a regular expression is given, or 'set notagbsearch' to switch off binary search. Other tools requiring binary search may not work at all if they don't use the ctags readtags library or similar. Change-Id: Ifce4b4fa5635617023e0be61ca6df0dd4d6b942a --- solenv/bin/create-tags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'solenv/bin') diff --git a/solenv/bin/create-tags b/solenv/bin/create-tags index e4364e95dc01..4cd6cdd67b88 100755 --- a/solenv/bin/create-tags +++ b/solenv/bin/create-tags @@ -19,4 +19,4 @@ omnicppoptions="--c++-kinds=+p --fields=+iaS --extra=+q" ctags -h "+.hdl.hrc" --langmap=c:+.hdl.hrc.src $omnicppoptions \ --languages=-HTML,Java,JavaScript \ -R --exclude=`echo ${INPATH} | sed 's/\./\\\./g'` --exclude=solver \ - --exclude=clone --exclude=install --totals=yes --sort=foldcase * + --exclude=clone --exclude=install --totals=yes * -- cgit