Skip to content

Instantly share code, notes, and snippets.

@cytopia
cytopia / make-vim-project
Created October 17, 2015 10:33
Vim workflow for project and ctag files
#------------------------------------------------------
#-------- CTAGS
make-ctags() {
ctags -RBF -f .tags \
--file-scope=yes \
--sort=yes \
--extra=+fq \
2>/dev/null
}
make-ctags-css() {