diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-20 09:08:43 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-20 09:08:43 +1300 |
commit | f6d87c4b66686f9d518c781b0ec49921360ce412 (patch) | |
tree | ebf39127761ab8a50bf05cc7d2b565f3916ce3e6 /vim/compiler | |
parent | Merge branch 'release/v0.18.0' into develop (diff) | |
download | dotfiles-f6d87c4b66686f9d518c781b0ec49921360ce412.tar.gz dotfiles-f6d87c4b66686f9d518c781b0ec49921360ce412.zip |
Correct "fi" to "endif" in new compiler files
Diffstat (limited to 'vim/compiler')
-rw-r--r-- | vim/compiler/perlcritic.vim | 2 | ||||
-rw-r--r-- | vim/compiler/vint.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vim/compiler/perlcritic.vim b/vim/compiler/perlcritic.vim index ec151906..afbb73c7 100644 --- a/vim/compiler/perlcritic.vim +++ b/vim/compiler/perlcritic.vim @@ -13,5 +13,5 @@ if v:version >= 704 || v:version == 704 && has('patch191') CompilerSet makeprg=perlcritic\ --verbose\ 1\ %:S else CompilerSet makeprg=perlcritic\ --verbose\ 1\ % -fi +endif CompilerSet errorformat=%f:%l:%c:%m diff --git a/vim/compiler/vint.vim b/vim/compiler/vint.vim index 0dcd4720..54d0fc4d 100644 --- a/vim/compiler/vint.vim +++ b/vim/compiler/vint.vim @@ -13,5 +13,5 @@ if v:version >= 704 || v:version == 704 && has('patch191') CompilerSet makeprg=vint\ %:S else CompilerSet makeprg=vint\ % -fi +endif CompilerSet errorformat=%f:%l:%c:\ %m |