Skip to content

Commit

Permalink
Merge pull request #710 from dsimmons/refactor/remove-unneeded-config
Browse files Browse the repository at this point in the history
Removed superfluous TagBar config for golang.
  • Loading branch information
spf13 committed May 1, 2015
2 parents aa93465 + e841851 commit 1edb0d9
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -636,21 +636,6 @@
" TagBar {
if isdirectory(expand("~/.vim/bundle/tagbar/"))
nnoremap <silent> <leader>tt :TagbarToggle<CR>
" If using go please install the gotags program using the following
" go install github.com/jstemmer/gotags
" And make sure gotags is in your path
let g:tagbar_type_go = {
\ 'ctagstype' : 'go',
\ 'kinds' : [ 'p:package', 'i:imports:1', 'c:constants', 'v:variables',
\ 't:types', 'n:interfaces', 'w:fields', 'e:embedded', 'm:methods',
\ 'r:constructor', 'f:functions' ],
\ 'sro' : '.',
\ 'kind2scope' : { 't' : 'ctype', 'n' : 'ntype' },
\ 'scope2kind' : { 'ctype' : 't', 'ntype' : 'n' },
\ 'ctagsbin' : 'gotags',
\ 'ctagsargs' : '-sort -silent'
\ }
endif
"}

Expand Down

0 comments on commit 1edb0d9

Please sign in to comment.