Fix vim sign priority patch check

With Vim 8.2 released, the previous check method is not accurate enough.
This commit is contained in:
StarryLeo
2020-03-15 14:58:38 +08:00
parent bbe5153fcb
commit 302ce71931
4 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ Before:
function! CollectSigns()
redir => l:output
if has('nvim-0.4.2') || (v:version >= 801 && has('patch614'))
if has('nvim-0.4.2') || has('patch-8.1.614')
silent exec 'sign place group=ale'
else
silent exec 'sign place'