diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-07-28 17:54:35 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-07-28 17:54:35 +0200 |
commit | ce31cd1d2f4e8eee9fd91325e4599f15cb9566fd (patch) | |
tree | 2306b79bdae6846233214734753be86ca6a13d7f /compiler/puppet-lint.vim | |
parent | 554a6ac7575f87b5b85d1b2bf60e7071c4164cbc (diff) | |
download | vim-polyglot-ce31cd1d2f4e8eee9fd91325e4599f15cb9566fd.tar.gz vim-polyglot-ce31cd1d2f4e8eee9fd91325e4599f15cb9566fd.zip |
Update
Diffstat (limited to 'compiler/puppet-lint.vim')
-rw-r--r-- | compiler/puppet-lint.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/puppet-lint.vim b/compiler/puppet-lint.vim index c65eeb19..584d0e19 100644 --- a/compiler/puppet-lint.vim +++ b/compiler/puppet-lint.vim @@ -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 |