-
-
Save davewongillies/cdb55b6476d5ecf184759648c82965d5 to your computer and use it in GitHub Desktop.
Ctags and vim-tagbar matching for Puppet Manifests - Based on http://comments.gmane.org/gmane.comp.sysutils.puppet.user/6152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" In your ~/.vimrc | |
let g:tagbar_type_puppet = { | |
\ 'ctagstype': 'puppet', | |
\ 'kinds': [ | |
\'c:class', | |
\'t:stage', | |
\'s:site', | |
\'n:node', | |
\'d:definition', | |
\'i:include', | |
\'v:variable', | |
\'r:resource', | |
\'f:default' | |
\] | |
\} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment