diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-19 23:34:08 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-19 23:34:08 +1300 |
commit | d7d38582bfbf48aa538aed4d209a30dfbeca3d9f (patch) | |
tree | 46e4b353306593c550f342aa9f916d4eddfa5d79 /vim/compiler | |
parent | Force g:current_compiler removal before check/lint (diff) | |
download | dotfiles-d7d38582bfbf48aa538aed4d209a30dfbeca3d9f.tar.gz dotfiles-d7d38582bfbf48aa538aed4d209a30dfbeca3d9f.zip |
Use %:S expansion only when available
Diffstat (limited to 'vim/compiler')
-rw-r--r-- | vim/compiler/perlcritic.vim | 8 | ||||
-rw-r--r-- | vim/compiler/vint.vim | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/vim/compiler/perlcritic.vim b/vim/compiler/perlcritic.vim index 39dcb46f..ec151906 100644 --- a/vim/compiler/perlcritic.vim +++ b/vim/compiler/perlcritic.vim @@ -7,5 +7,11 @@ if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif -CompilerSet makeprg=perlcritic\ --verbose\ 1\ %:S +" 7.4.191 is the earliest version with the :S file name modifier, which we +" really should use if we can +if v:version >= 704 || v:version == 704 && has('patch191') + CompilerSet makeprg=perlcritic\ --verbose\ 1\ %:S +else + CompilerSet makeprg=perlcritic\ --verbose\ 1\ % +fi CompilerSet errorformat=%f:%l:%c:%m diff --git a/vim/compiler/vint.vim b/vim/compiler/vint.vim index 1fbe3b62..0dcd4720 100644 --- a/vim/compiler/vint.vim +++ b/vim/compiler/vint.vim @@ -7,5 +7,11 @@ if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif -CompilerSet makeprg=vint\ %:S +" 7.4.191 is the earliest version with the :S file name modifier, which we +" really should use if we can +if v:version >= 704 || v:version == 704 && has('patch191') + CompilerSet makeprg=vint\ %:S +else + CompilerSet makeprg=vint\ % +fi CompilerSet errorformat=%f:%l:%c:\ %m |