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
in lua number if number will always be asserted as true
```lua
if 0 then print("number is == true") end
```
And in viml boolean doesn't exit
So for example this:
nvim --cmd "let g:unception_disable=0"
will still disable unception since in lua `if 0` == `if true`
we could also do this instead
```
nvim --cmd "lua vim.g.unception_disable=false"
```
but i think it's better to also support viml
0 commit comments