mirror of
https://github.com/neovim/neovim.git
synced 2025-09-25 04:28:33 +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