aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/vint.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-29 03:42:03 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-29 03:42:03 +1200
commitdd5cca3c937ae2482459068990861b1bc8c1d438 (patch)
treeb3e562afc0cda9b4abc5153b4215cfa5b2c19bdf /vim/compiler/vint.vim
parentMerge branch 'release/v5.1.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-6cadf4f4f2c5dbb701c951edf7fa9b1445e2e20e.tar.gz (sig)
dotfiles-6cadf4f4f2c5dbb701c951edf7fa9b1445e2e20e.zip
Merge branch 'release/v5.2.0'v5.2.0
* release/v5.2.0: Bump VERSION Refine version check for :compiler scripts
Diffstat (limited to 'vim/compiler/vint.vim')
-rw-r--r--vim/compiler/vint.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/compiler/vint.vim b/vim/compiler/vint.vim
index 8cd35cf1..216d8602 100644
--- a/vim/compiler/vint.vim
+++ b/vim/compiler/vint.vim
@@ -1,6 +1,6 @@
" :compiler support for Vim script linting with Vint
" <https://github.com/Kuniwak/vint>
-if exists('current_compiler') || &compatible || v:version < 800
+if exists('current_compiler') || &compatible || !has('patch-7.4.191')
finish
endif
let current_compiler = 'vimlint'