Squashed 'vim/bundle/puppet/' content from commit 04183f222
git-subtree-dir: vim/bundle/puppet git-subtree-split: 04183f2222a60d958d3cc8f30d1ab308f12fc38d
commit
f606d905f2
@ -0,0 +1,38 @@
|
|||||||
|
vim-puppet
|
||||||
|
==========
|
||||||
|
|
||||||
|
Make vim more Puppet friendly!
|
||||||
|
|
||||||
|
Provides
|
||||||
|
--------
|
||||||
|
|
||||||
|
* Formatting based on the latest Puppetlabs Style Guide
|
||||||
|
* Syntax highlighting
|
||||||
|
* Automatic => alignment (when the [tabular](https://github.com/godlygeek/tabular) plugin is also installed)
|
||||||
|
* If you don't like that, add `let g:puppet_align_hashes = 0` to your vimrc.
|
||||||
|
* Doesn't require a bloated JRE
|
||||||
|
* Doesn't take minutes to open
|
||||||
|
|
||||||
|
Additional useful plugins
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
* [syntastic](https://github.com/scrooloose/syntastic) plugin for automatic
|
||||||
|
syntax checking while in vim.
|
||||||
|
* [vim-snippets](https://github.com/honza/vim-snippets) is a library of
|
||||||
|
snippets for multiple languages, including Puppet. Works with both
|
||||||
|
[snipmate](https://github.com/garbas/vim-snipmate) and
|
||||||
|
[ultisnips](https://github.com/SirVer/ultisnips).
|
||||||
|
|
||||||
|
Installation
|
||||||
|
------------
|
||||||
|
|
||||||
|
If you're using [pathogen](https://github.com/tpope/vim-pathogen) to manage your vim modules (and if you're not, why
|
||||||
|
aren't you), you can simply add this as a submodule in your `~/.vim/bundle/`
|
||||||
|
directory.
|
||||||
|
|
||||||
|
My entire home directory is a git repository, so for me it's simply a case of
|
||||||
|
|
||||||
|
$ git submodule add -f git://github.com/rodjek/vim-puppet.git .vim/bundle/puppet
|
||||||
|
|
||||||
|
If you're not using pathogen, you can just manually place the files in the
|
||||||
|
appropriate places under `~/.vim/`
|
@ -0,0 +1,16 @@
|
|||||||
|
if !exists('g:puppet_align_hashes')
|
||||||
|
let g:puppet_align_hashes = 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if g:puppet_align_hashes && exists(':Tabularize')
|
||||||
|
inoremap <buffer> <silent> > ><Esc>:call <SID>puppetalign()<CR>a
|
||||||
|
function! s:puppetalign()
|
||||||
|
let p = '^\s*\w+\s*[=+]>.*$'
|
||||||
|
let column = strlen(substitute(getline('.')[0:col('.')],'\([^=]\|=[^>]\)','','g'))
|
||||||
|
let position = strlen(matchstr(getline('.')[0:col('.')],'.*=>\s*\zs.*'))
|
||||||
|
Tabularize /=>/l1
|
||||||
|
normal! 0
|
||||||
|
echo repeat('\([^=]\|=[^>]\)*=>',column).'\s\{-\}'.repeat('.',position)
|
||||||
|
call search(repeat('\([^=]\|=[^>]\)*=>',column).'\s\{-\}'.repeat('.',position),'ce',line('.'))
|
||||||
|
endfunction
|
||||||
|
endif
|
@ -0,0 +1,2 @@
|
|||||||
|
au! BufRead,BufNewFile *.pp setfiletype puppet
|
||||||
|
au! BufRead,BufNewFile Puppetfile setfiletype ruby
|
@ -0,0 +1,6 @@
|
|||||||
|
setl ts=2
|
||||||
|
setl sts=2
|
||||||
|
setl sw=2
|
||||||
|
setl et
|
||||||
|
setl keywordprg=puppet\ describe\ --providers
|
||||||
|
setl iskeyword=-,:,@,48-57,_,192-255
|
@ -0,0 +1,94 @@
|
|||||||
|
" Vim indent file
|
||||||
|
" Language: Puppet
|
||||||
|
" Maintainer: Todd Zullinger <tmz@pobox.com>
|
||||||
|
" Last Change: 2009 Aug 19
|
||||||
|
" vim: set sw=4 sts=4:
|
||||||
|
|
||||||
|
if exists("b:did_indent")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let b:did_indent = 1
|
||||||
|
|
||||||
|
setlocal autoindent smartindent
|
||||||
|
setlocal indentexpr=GetPuppetIndent()
|
||||||
|
setlocal indentkeys+=0],0)
|
||||||
|
|
||||||
|
if exists("*GetPuppetIndent")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Check if a line is part of an include 'block', e.g.:
|
||||||
|
" include foo,
|
||||||
|
" bar,
|
||||||
|
" baz
|
||||||
|
function! s:PartOfInclude(lnum)
|
||||||
|
let lnum = a:lnum
|
||||||
|
while lnum
|
||||||
|
let lnum = lnum - 1
|
||||||
|
let line = getline(lnum)
|
||||||
|
if line !~ ',$'
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
if line =~ '^\s*include\s\+[^,]\+,$'
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
return 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:OpenBrace(lnum)
|
||||||
|
call cursor(a:lnum, 1)
|
||||||
|
return searchpair('{\|\[\|(', '', '}\|\]\|)', 'nbW')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! GetPuppetIndent()
|
||||||
|
let pnum = prevnonblank(v:lnum - 1)
|
||||||
|
if pnum == 0
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
let line = getline(v:lnum)
|
||||||
|
let pline = getline(pnum)
|
||||||
|
let ind = indent(pnum)
|
||||||
|
|
||||||
|
if pline =~ '^\s*#'
|
||||||
|
return ind
|
||||||
|
endif
|
||||||
|
|
||||||
|
if pline =~ '\({\|\[\|(\|:\)$'
|
||||||
|
let ind += &sw
|
||||||
|
elseif pline =~ ';$' && pline !~ '[^:]\+:.*[=+]>.*'
|
||||||
|
let ind -= &sw
|
||||||
|
elseif pline =~ '^\s*include\s\+.*,$'
|
||||||
|
let ind += &sw
|
||||||
|
endif
|
||||||
|
|
||||||
|
if pline !~ ',$' && s:PartOfInclude(pnum)
|
||||||
|
let ind -= &sw
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Match } }, }; ] ]: ], ]; )
|
||||||
|
if line =~ '^\s*\(}\(,\|;\)\?$\|]:\|],\|}]\|];\?$\|)\)'
|
||||||
|
let ind = indent(s:OpenBrace(v:lnum))
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Don't actually shift over for } else {
|
||||||
|
if line =~ '^\s*}\s*els\(e\|if\).*{\s*$'
|
||||||
|
let ind -= &sw
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Don't indent resources that are one after another with a ->(ordering arrow)
|
||||||
|
" file {'somefile':
|
||||||
|
" ...
|
||||||
|
" } ->
|
||||||
|
"
|
||||||
|
" package { 'mycoolpackage':
|
||||||
|
" ...
|
||||||
|
" }
|
||||||
|
if line =~ '->$'
|
||||||
|
let ind -= &sw
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
return ind
|
||||||
|
endfunction
|
@ -0,0 +1,166 @@
|
|||||||
|
" puppet syntax file
|
||||||
|
" Filename: puppet.vim
|
||||||
|
" Language: puppet configuration file
|
||||||
|
" Maintainer: Luke Kanies <luke@madstop.com>
|
||||||
|
" URL:
|
||||||
|
" Last Change:
|
||||||
|
" Version:
|
||||||
|
"
|
||||||
|
|
||||||
|
" Copied from the cfengine, ruby, and perl syntax files
|
||||||
|
" For version 5.x: Clear all syntax items
|
||||||
|
" For version 6.x: Quit when a syntax file was already loaded
|
||||||
|
if version < 600
|
||||||
|
syntax clear
|
||||||
|
elseif exists("b:current_syntax")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
" match class/definition/node declarations
|
||||||
|
syn region puppetDefine start="^\s*\(class\|define\|node\)\s" end="{" contains=puppetDefType,puppetDefName,puppetDefArguments,puppetNodeRe,@NoSpell
|
||||||
|
syn keyword puppetDefType class define node inherits contained
|
||||||
|
syn region puppetDefArguments start="(" end=")" contained contains=puppetArgument,puppetString,puppetComment,puppetMultilineComment
|
||||||
|
syn match puppetArgument "\w\+" contained
|
||||||
|
syn match puppetArgument "\$\w\+" contained
|
||||||
|
syn match puppetArgument "'[^']+'" contained
|
||||||
|
syn match puppetArgument '"[^"]+"' contained
|
||||||
|
syn match puppetDefName "\w\+" contained
|
||||||
|
syn match puppetNodeRe "/.*/" contained
|
||||||
|
|
||||||
|
" match 'foo' in 'class foo { ...'
|
||||||
|
" match 'foo::bar' in 'class foo::bar { ...'
|
||||||
|
" match 'Foo::Bar' in 'Foo::Bar["..."]
|
||||||
|
"FIXME: "Foo-bar" doesn't get highlighted as expected, although "foo-bar" does.
|
||||||
|
syn match puppetInstance "[A-Za-z0-9_-]\+\(::[A-Za-z0-9_-]\+\)*\s*{" contains=puppetTypeName,puppetTypeDefault,@NoSpell
|
||||||
|
syn match puppetInstance "[A-Z][a-z_-]\+\(::[A-Z][a-z_-]\+\)*\s*[[{]" contains=puppetTypeName,puppetTypeDefault,@NoSpell
|
||||||
|
syn match puppetInstance "[A-Z][a-z_-]\+\(::[A-Z][a-z_-]\+\)*\s*<\?<|" contains=puppetTypeName,puppetTypeDefault,@NoSpell
|
||||||
|
syn match puppetTypeName "[a-z]\w*" contained
|
||||||
|
syn match puppetTypeDefault "[A-Z]\w*" contained
|
||||||
|
|
||||||
|
syn match puppetParam "\w\+\s*\(=\|+\)>" contains=puppetTypeRArrow,puppetParamName
|
||||||
|
syn match puppetParamRArrow "\(=\|+\)>" contained
|
||||||
|
syn match puppetParamName "\w\+" contained contains=@NoSpell
|
||||||
|
syn match puppetVariable "$\(\(\(::\)\?\w\+\)\+\|{\(\(::\)\?\w\+\)\+}\)"
|
||||||
|
syn match puppetParen "("
|
||||||
|
syn match puppetParen ")"
|
||||||
|
syn match puppetBrace "{"
|
||||||
|
syn match puppetBrace "}"
|
||||||
|
syn match puppetBrack "\["
|
||||||
|
syn match puppetBrack "\]"
|
||||||
|
syn match puppetBrack "<|"
|
||||||
|
syn match puppetBrack "|>"
|
||||||
|
|
||||||
|
" match 'present' in 'ensure => present'
|
||||||
|
" match '2755' in 'mode => 2755'
|
||||||
|
" don't match 'bar' in 'foo => bar'
|
||||||
|
syn match puppetParam "\w\+\s*[=+]>\s*[a-z0-9]\+" contains=puppetParamString,puppetParamName
|
||||||
|
syn match puppetParamString "[=+]>\s*\w\+" contains=puppetParamKeyword,puppetParamSpecial,puppetParamDigits contained
|
||||||
|
syn keyword puppetParamKeyword present absent purged latest installed running stopped mounted unmounted role configured file directory link contained
|
||||||
|
syn keyword puppetParamSpecial true false undef contained
|
||||||
|
syn match puppetParamDigits "[0-9]\+"
|
||||||
|
|
||||||
|
" match 'template' in 'content => template("...")'
|
||||||
|
syn match puppetParam "\w\+\s*[=+]>\s*\w\+\s*(" contains=puppetFunction,puppetParamName
|
||||||
|
" statements
|
||||||
|
syn region puppetFunction start="^\s*\(alert\|crit\|debug\|emerg\|err\|fail\|include\|info\|notice\|realize\|require\|search\|tag\|warning\)\s*(" end=")" contained contains=puppetString
|
||||||
|
" rvalues
|
||||||
|
syn region puppetFunction start="^\s*\(defined\|file\|fqdn_rand\|generate\|inline_template\|regsubst\|sha1\|shellquote\|split\|sprintf\|tagged\|template\|versioncmp\)\s*(" end=")" contained contains=puppetString
|
||||||
|
|
||||||
|
syn match puppetVariable "$[a-zA-Z0-9_:]\+" contains=@NoSpell
|
||||||
|
syn match puppetVariable "${[a-zA-Z0-9_:]\+}" contains=@NoSpell
|
||||||
|
|
||||||
|
" match anything between simple/double quotes.
|
||||||
|
" don't match variables if preceded by a backslash.
|
||||||
|
syn region puppetString start=+'+ skip=+\\\\\|\\'+ end=+'+
|
||||||
|
syn region puppetString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=puppetVariable,puppetNotVariable
|
||||||
|
syn match puppetNotVariable "\\$\w\+" contained
|
||||||
|
syn match puppetNotVariable "\\${\w\+}" contained
|
||||||
|
|
||||||
|
syn keyword puppetKeyword import inherits include require contains
|
||||||
|
syn keyword puppetControl case default if else elsif
|
||||||
|
syn keyword puppetSpecial true false undef
|
||||||
|
|
||||||
|
syn match puppetClass "[A-Za-z0-9_-]\+\(::[A-Za-z0-9_-]\+\)\+" contains=@NoSpell
|
||||||
|
|
||||||
|
" Match the Regular Expression type
|
||||||
|
" XXX: Puppet does not currently support a few features available in the
|
||||||
|
" full Ruby Regexp class, namely, interpolation, lookbehind and named
|
||||||
|
" sub-expressions. Matches for these features are included in the
|
||||||
|
" commented-out versions of puppetRegexParen and puppetRegexSubName,
|
||||||
|
" plus the supporting groups puppetRegexAngBrack and puppetRegexTick.
|
||||||
|
syn region puppetRegex start="/" skip="\\/" end="/" contains=puppetRegexParen,puppetRegexBrace,puppetRegexOrpuppetRegexBrack,puppetRegexComment
|
||||||
|
syn match puppetRegexParen "(\(?\([imx]\{0,4}:\|[=!]\)\)\?" contains=puppetRegexSpecChar,puppetRegexSubName contained
|
||||||
|
"syn match puppetRegexParen "(\(?\([imxo]\{0,4}:\|['<][[:alnum:]]\+[>']\|<?[=!]\)\)\?" contains=puppetRegexSpecChar,puppetRegexSubName contained
|
||||||
|
syn match puppetRegexParen ")" contained
|
||||||
|
syn match puppetRegexBrace "{" contained
|
||||||
|
syn match puppetRegexBrace "}" contained
|
||||||
|
syn match puppetRegexBrack "\[" contained
|
||||||
|
syn match puppetRegexBrack "\]" contained
|
||||||
|
"syn match puppetRegexAngBrack "<" contained
|
||||||
|
"syn match puppetRegexAngBrack ">" contained
|
||||||
|
"syn match puppetRegexTick +'+ contained
|
||||||
|
syn match puppetRegexOr "|" contained
|
||||||
|
"syn match puppetRegexSubName "['<][[:alnum:]]\+[>']" contains=puppetRegexAngBrack,puppetRegexTick contained
|
||||||
|
syn match puppetRegexSpecialChar "[?:imx]\|\(<?[=!]\)" contained
|
||||||
|
syn region puppetRegexComment start="(?#" skip="\\)" end=")" contained
|
||||||
|
|
||||||
|
" comments last overriding everything else
|
||||||
|
syn match puppetComment "\s*#.*$" contains=puppetTodo,@Spell
|
||||||
|
syn region puppetMultilineComment start="/\*" end="\*/" contains=puppetTodo,@Spell
|
||||||
|
syn keyword puppetTodo TODO NOTE FIXME XXX BUG HACK contained
|
||||||
|
syn keyword puppetTodo TODO: NOTE: FIXME: XXX: BUG: HACK: contained
|
||||||
|
|
||||||
|
" Define the default highlighting.
|
||||||
|
" For version 5.7 and earlier: only when not done already
|
||||||
|
" For version 5.8 and later: only when an item doesn't have highlighting yet
|
||||||
|
if version >= 508 || !exists("did_puppet_syn_inits")
|
||||||
|
if version < 508
|
||||||
|
let did_puppet_syn_inits = 1
|
||||||
|
command -nargs=+ HiLink hi link <args>
|
||||||
|
else
|
||||||
|
command -nargs=+ HiLink hi def link <args>
|
||||||
|
endif
|
||||||
|
|
||||||
|
HiLink puppetVariable Identifier
|
||||||
|
HiLink puppetType Identifier
|
||||||
|
HiLink puppetKeyword Keyword
|
||||||
|
HiLink puppetComment Comment
|
||||||
|
HiLink puppetMultilineComment Comment
|
||||||
|
HiLink puppetString String
|
||||||
|
HiLink puppetRegex Constant
|
||||||
|
HiLink puppetRegexParen Delimiter
|
||||||
|
HiLink puppetRegexBrace Delimiter
|
||||||
|
HiLink puppetRegexBrack Delimiter
|
||||||
|
HiLink puppetRegexAngBrack Delimiter
|
||||||
|
HiLink puppetRegexTick Delimiter
|
||||||
|
HiLink puppetRegexOr Delimiter
|
||||||
|
HiLink puppetRegexSubName Identifier
|
||||||
|
HiLink puppetRegexSpecChar SpecialChar
|
||||||
|
HiLink puppetRegexComment Comment
|
||||||
|
HiLink puppetParamKeyword Keyword
|
||||||
|
HiLink puppetParamDigits String
|
||||||
|
HiLink puppetNotVariable String
|
||||||
|
HiLink puppetParamSpecial Boolean
|
||||||
|
HiLink puppetSpecial Special
|
||||||
|
HiLink puppetTodo Todo
|
||||||
|
HiLink puppetBrack Delimiter
|
||||||
|
HiLink puppetTypeBrack Delimiter
|
||||||
|
HiLink puppetBrace Delimiter
|
||||||
|
HiLink puppetTypeBrace Delimiter
|
||||||
|
HiLink puppetParen Delimiter
|
||||||
|
HiLink puppetDelimiter Delimiter
|
||||||
|
HiLink puppetControl Statement
|
||||||
|
HiLink puppetDefType Define
|
||||||
|
HiLink puppetDefName Type
|
||||||
|
HiLink puppetNodeRe Type
|
||||||
|
HiLink puppetTypeName Statement
|
||||||
|
HiLink puppetTypeDefault Type
|
||||||
|
HiLink puppetParamName Identifier
|
||||||
|
HiLink puppetArgument Identifier
|
||||||
|
HiLink puppetFunction Function
|
||||||
|
HiLink puppetClass Include
|
||||||
|
|
||||||
|
delcommand HiLink
|
||||||
|
endif
|
||||||
|
|
||||||
|
let b:current_syntax = "puppet"
|
Loading…
Reference in New Issue