diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-06 02:44:15 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-08-06 04:22:45 +0200 |
commit | 3827d5bc713d9ed149bc793f411debb5b89a4eba (patch) | |
tree | fc61484a30532ef89f24c5b60534dccc56408d17 /runtime | |
parent | d801ce70c1fb8dd8b3735ca9e06158aaf48203ba (diff) | |
download | rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.tar.gz rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.tar.bz2 rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.zip |
input: skip dialogs if no UI is active
Treat dialogs in the same way as "silent mode" (`nvim -es`).
References #1984
References #3901
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/starting.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 91915406cb..4cfc98d5b6 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -53,7 +53,7 @@ filename One or more file names. The first one will be the current < Starting in Ex mode: > nvim -e - nvim -E -< Start editing in silent mode. See |-s-ex|. +< Start editing in |silent-mode|. *-t* *-tag* -t {tag} A tag. "tag" is looked up in the tags file, the associated @@ -200,7 +200,7 @@ argument. *-E* -E Start Vim in improved Ex mode |gQ|. - *-s-ex* + *-s-ex* *silent-mode* -s Silent or batch mode. Only when "-s" is preceded by the "-e" argument. Otherwise see |-s|, which does take an argument while this use of "-s" doesn't. To be used when Vim is used @@ -221,7 +221,7 @@ argument. Initializations are skipped (except the ones given with the "-u" argument). Example: > - vim -e -s < thefilter thefile + vim -es < thefilter thefile < *-b* -b Binary mode. File I/O will only recognize <NL> to separate @@ -351,6 +351,7 @@ argument. *--headless* --headless Do not start the built-in UI. + See also |silent-mode|, which does start a (limited) UI. ============================================================================== 2. Initialization *initialization* *startup* |