Skip to content

Commit 597ed05

Browse files
committed
Vim.Type: workaround vint blob literal
1 parent 4bf81df commit 597ed05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

autoload/vital/__vital__/Vim/Type.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ function! s:_make_is_comparable_cache() abort
5151
\ exists('*test_null_channel') ? test_null_channel() : 0,
5252
\ ]
5353
if has('patch-8.1.0735')
54-
let vals += [0z00]
54+
" TODO vint workaround
55+
" let vals += [0z00]
56+
execute "let vals += [0z00]"
5557
endif
5658

5759
let result = []

0 commit comments

Comments
 (0)