diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-29 07:22:15 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-04 02:09:27 +0200 |
commit | 1f300e08b8c0c35b2f3d79506ae9817cd8591624 (patch) | |
tree | 26894f80f6b8d37209d492602c37205ce126380d /man | |
parent | 4211255c755513aa91d4a9277b69b557fc6658ee (diff) | |
download | rneovim-1f300e08b8c0c35b2f3d79506ae9817cd8591624.tar.gz rneovim-1f300e08b8c0c35b2f3d79506ae9817cd8591624.tar.bz2 rneovim-1f300e08b8c0c35b2f3d79506ae9817cd8591624.zip |
win/startup: remove --literal
Fixes 2 failing tests in startup_spec.lua.
The Windows-only `--literal` option complicates support of "stdin-as-text
+ file-args" (#7679). Could work around it, but it's not worth
the trouble:
- users have a reasonable (and englightening) alternative: nvim +"n *"
- "always literal" is more consistent/predictable
- avoids platform-specific special-case
Unrelated changes:
- Replace fileno(stdxx) with STDXX_FILENO for consistency (not motivated
by any observed technical reason).
Diffstat (limited to 'man')
-rw-r--r-- | man/nvim.1 | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/man/nvim.1 b/man/nvim.1 index 7872f932d5..75c037946a 100644 --- a/man/nvim.1 +++ b/man/nvim.1 @@ -73,19 +73,18 @@ See Interpret all further arguments as files. Can be used to edit files starting with a hyphen .Pq Sq - . -.It Fl -literal -Interpret filenames literally, that is, do not expand wildcards. -Has no effect on Unix-like systems, where the shell expands wildcards. .It Fl e -Ex mode. +Ex mode. Reads stdin as Ex commands. See .Ic :help Ex-mode . .It Fl E -Ex mode, improved. +Ex mode, improved. Reads stdin as text. See .Ic :help gQ . .It Fl es -Ex mode, silent. +Silent (batch) mode. Reads stdin as Ex commands. +.It Fl Es +Silent (batch) mode. Reads stdin as text. .It Fl d Diff mode. Show the difference between two to four files, similar to |