Kaydet (Commit) 0d87455f authored tarafından Eike Rathke's avatar Eike Rathke

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
üst b7699c97
......@@ -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 *
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment