This commit is contained in:
Adam Stankiewicz
2021-07-28 17:54:35 +02:00
parent 554a6ac757
commit ce31cd1d2f
16 changed files with 209 additions and 87 deletions

View File

@@ -6,12 +6,12 @@ endif
" Compiler: puppet-lint
" Maintainer: Doug Kearns <dougkearns@gmail.com>
if exists("current_compiler")
if exists('current_compiler')
finish
endif
let current_compiler = "puppet-lint"
let current_compiler = 'puppet-lint'
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
if exists(':CompilerSet') != 2 " older Vim always used :setlocal
command -nargs=* CompilerSet setlocal <args>
endif