-
-
Save BlackMac/1825401 to your computer and use it in GitHub Desktop.
sdf
It works, but it's a bit slow for big tags files. I wonder if there's something from the actual ctags plugin you might be able to use to speed it up?
removing -i improves performance considerably, see my fork if needed.
I am the maintainer of the CTags plugin. It would be by far best to integrate this into that plugin, rather than use a separate one. It keeps a dict loaded in RAM, and also sorts the tags file for easier lookup.
It already has a command to list all tags in the quick panel. I think this could tack onto that pretty easily. It just needs to load this list into the completions. I also had filed ticket to add support for ./-> completions (SublimeText/CTags#75). That will be a bit more involved, but along the same vein, and definitely desirable.
I tried this and got ctags: illegal option -- R
in Terminal.
@barneywilliams gettings this in CTags would be great.
Cool! It's great !
@Grawl this is because you are using the Mac OS X shipped version of ctags
. Install ctags
from homebrew and use the one located at /usr/local/bin/ctags
.
You can use this improved version (for windows) to look in all your project folders. Also you will need to download Grep and Gawk for windows (http://gnuwin32.sourceforge.net/packages.html) and add the installed folder to your system PATH and restart windows before try it.