Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.13 KB

vim.md

File metadata and controls

55 lines (42 loc) · 1.13 KB

vim tips and tricks.

https://stackoverflow.com/questions/53664/how-to-effectively-work-with-multiple-files-in-vim?rq=1 http://www.skywind.me/blog/tags/vim

vim tutorial

https://github.com/mhinz/vim-galore

vim plugins

ctags

https://kulkarniamit.github.io/whatwhyhow/howto/use-vim-ctags.html

add the following to ~/.ctags

--recurse=yes
--exclude=.git
--exclude=BUILD
--exclude=.svn
--exclude=*.js
--exclude=vendor/*
--exclude=node_modules/*
--exclude=db/*
--exclude=log/*
--exclude=\*.min.\*
--exclude=\*.swp
--exclude=\*.bak
--exclude=\*.pyc
--exclude=\*.class
--exclude=\*.sln
--exclude=\*.csproj
--exclude=\*.csproj.user
--exclude=\*.cache
--exclude=\*.dll
--exclude=\*.pdb

go to the source code directory, run ctags.

cscope

Derivative

Reference

https://github.com/mhinz/vim-galore