diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-27 03:41:02 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-04 02:09:27 +0200 |
commit | 63058fb5b05a1293dd50851af46f33fc15110829 (patch) | |
tree | 1f5c34e920bc2deec4cdc44e61af0644d25323d1 /src/nvim/globals.h | |
parent | 787ae1b38bb388e2ee236e89091e87932fd0efb3 (diff) | |
download | rneovim-63058fb5b05a1293dd50851af46f33fc15110829.tar.gz rneovim-63058fb5b05a1293dd50851af46f33fc15110829.tar.bz2 rneovim-63058fb5b05a1293dd50851af46f33fc15110829.zip |
startup: fix -es/-Es so they are actually silent
silent-mode (-es/-Es) has been broken for years. The workaround up to
now was to include --headless. But --headless is not equivalent because
it prints all messages, not the limited subset defined by silent-mode.
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index eefe7b4bf5..51bc3f1289 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -580,10 +580,6 @@ EXTERN int sandbox INIT(= 0); /// Batch-mode: "-es" or "-Es" commandline argument was given. EXTERN int silent_mode INIT(= false); -/// Set to true when sourcing of startup scripts (init.vim) is done. -/// Used for options that cannot be changed after startup scripts. -EXTERN bool did_source_startup_scripts INIT(= false); - /// Start position of active Visual selection. EXTERN pos_T VIsual; /// Whether Visual mode is active. |