diff options
author | Todd Zullinger <tmz@pobox.com> | 2009-05-29 19:33:42 -0400 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-05-30 15:59:30 +1000 |
commit | 00d5139639afe9b206f2f68df95cebfeb28f28b1 (patch) | |
tree | 7280383b933de27955fe6fb4302fce54a399f248 /ext/vim/syntax | |
parent | 9067abd5fcb3202fc7ac120d925e3e9f39d5933e (diff) | |
download | puppet-00d5139639afe9b206f2f68df95cebfeb28f28b1.tar.gz puppet-00d5139639afe9b206f2f68df95cebfeb28f28b1.tar.xz puppet-00d5139639afe9b206f2f68df95cebfeb28f28b1.zip |
vim: Remove another mention of 'site' from syntax
Noticed-by: Marc Fournier <marc.fournier@camptocamp.com>
Signed-off-by: Todd Zullinger <tmz@pobox.com>
Diffstat (limited to 'ext/vim/syntax')
-rw-r--r-- | ext/vim/syntax/puppet.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/vim/syntax/puppet.vim b/ext/vim/syntax/puppet.vim index 1c8793858..ba9ac92e9 100644 --- a/ext/vim/syntax/puppet.vim +++ b/ext/vim/syntax/puppet.vim @@ -17,7 +17,7 @@ elseif exists("b:current_syntax") endif syn region puppetDefine start="^\s*\(class\|define\|node\)" end="{" contains=puppetDefType,puppetDefName,puppetDefArguments -syn keyword puppetDefType class define site node inherits contained +syn keyword puppetDefType class define node inherits contained syn keyword puppetInherits inherits contained syn region puppetDefArguments start="(" end=")" contains=puppetArgument syn match puppetArgument "\w\+" contained |