-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors on NUL characters in vroom files. #49
Comments
It needs to be something
The exception and behavior you're seeing are a little surprising, too. There's probably some overall bugginess with special characters. Not sure if we actually want to support literal NUL characters, but if not we could at least improve the error message to say |
Quick check for Neovim's As for the and cases it is likely they are affected by #36(neovim/neovim#1270) |
|
Actually, it's working for the lua tests (neovim/neovim#1296 (comment)), but it converts |
Hi. I need to test various features of vim/neovim related to NUL (digraph: ^@) characters. I've tried this a couple different ways and all failed, one causing vroom itself to quit early.
(The
^@
produced withCtrl+k
NU
) This test might not be well-formed as no keyboard has a NUL key, but here's the output for running with--neovim
:Expected
"acd"
? What happened tob
? At least I understand theFound:
line--vroom thinksNUL
means termination.Now, run with plain vim:
Try 2:
neovim:
vim:
Almost the same, but note that the
<<<<
marker for the neovim test displays on the next line.On a lighter side, this test works with both vim and neovim.
Eventually, I'd like to use vroom to test
system()
andsystemlist()
's support of NUL characters. Thank you.The text was updated successfully, but these errors were encountered: