You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the latest release (vim-vint-0.1.dev1+g471e70b) I get the following
function! Mask2int(mask,drawer) abort
✗ return printf("%010b", '0x'.a:mask)->slice(0,10)->split('\zs')->reverse()->map('v:val ? a:drawer."/".(v:key+1) : ""')->filter('v:val')
endfunction
ProhibitInvalidMapCall - Number of arguments for map() must be 2 (if not, it will throw E118 or E119) (see :help map())
It appears it accepts most method calls, but fails on map() which it thinks requires additional arguments despite being a method call.
Thanks
The text was updated successfully, but these errors were encountered:
Using the latest release (vim-vint-0.1.dev1+g471e70b) I get the following
It appears it accepts most method calls, but fails on
map()
which it thinks requires additional arguments despite being a method call.Thanks
The text was updated successfully, but these errors were encountered: