mirror of
https://github.com/neovim/neovim.git
synced 2025-11-29 21:50:38 +00:00
Before this change, -E/-Es without `-u NONE` reads stdin as Ex commands.
It should always read stdin as text (into buffer 1), like this:
echo foo | nvim -Es +'%p'
foo
echo foo | nvim -Es -u NORC +'%p'
foo