This sympton I was only able to reproduce on some Unix machines, I can now produce it on Windows machines too.
If you execute this command: let msg = "Enter character:" | echo msg | let c = getchar() | let c = nr2char(c) | echon c The output you get is: Enter character:j Some users on different *nix machines report they get: Enter character: j Press Enter or type command to continue. Where I cannot reproduce this exactly, there is a simple variant which can be reproduced. gvim -u NONE -U NONE -N :let msg = "Enter character:" | echo msg | let c = getchar() | let c = nr2char(c) | echon c If the command fits on one line, I get: Enter character:j If you make the width of the screen smaller so that the command above (90 characters long) must wrap, when you execute it you get: Enter character:j Press ENTER or type command to continue. Is this a bug or is it expected? Thanks, David -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
