We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d659faf commit 469f870Copy full SHA for 469f870
runtime/compiler/tombi.vim
@@ -24,7 +24,7 @@ if !exists('s:tombi_nocolor')
24
25
function s:VersionGE(ver, req) abort
26
" Compare semantic versions a.b.c ≥ x.y.z
27
- let l:pa = map(split(a:ver), '\.'), 'str2nr(v:val)')
+ let l:pa = map(split(a:ver, '\.'), 'str2nr(v:val)')
28
let l:pb = map(split(a:req, '\.'), 'str2nr(v:val)')
29
while len(l:pa) < 3 | call add(l:pa, 0) | endwhile
30
while len(l:pb) < 3 | call add(l:pb, 0) | endwhile
0 commit comments