Vim Ctags Cheat Sheet
There are dozens of good vim cheat sheets online. Why do another one? This one is a cheat sheet tailored to my workflow for generating ctags. Let’s have a look. Generate ctags like this (replace js with whatever language files you want to ignore, if any. I don’t code javascript, but my projects contain tons of js files, so I exclude them): ctags -R -f ~/.ctags --exclude='*.js' <path-to-project> If your project contains a language that is not supported by ctags, but is related to another familiar language, you can use langmap....