I was messing around with vim, and every now and again my CPU goes to 100% running ctags. It's getting annoying, I can't figure out how to uninstall it. I've tried 'sudo port uninstall ctags' but that didn't do anything. I thought I uninstalled the vim package that was using it but apparently not. How do I uninstall ctags?
|
feedback
|
migrated from stackoverflow.com Jan 31 at 17:41
This question came from our site for professional and enthusiast programmers.
|
Through Terminal:
should output all filenames containing the string 'ctags', in the locate database. If the database has not been built try:
default location of ctags is: /usr/bin/ctags
for deletion.
and
will give you all the files and their line numbers that contain the string 'ctags' (case insensitive) and are nested into the subfolders of the designated path respectively. An approach which could help to narrow down the search for the triggering file. | |||
|
feedback
|

.vimrc? In Terminal.app, what does$ which ctagssay? – romainl Jan 31 at 18:04