Skip to content

Instantly share code, notes, and snippets.

@natlownes
Created February 15, 2013 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natlownes/4961595 to your computer and use it in GitHub Desktop.
Save natlownes/4961595 to your computer and use it in GitHub Desktop.
" tagbar
let g:tagbar_usearrows = 1
nnoremap <leader>T :TagbarToggle<CR>
let g:tagbar_type_coffee = {
\ 'ctagstype' : 'coffee',
\ 'kinds' : [
\ 'c:classes',
\ 'f:functions',
\ 'v:variables'
\ ],
\ }
set cscopetag
set cscopetagorder=1
" bring up tag list by default
noremap <C-]> g<C-]>
noremap g<C-]> <C-]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment