diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-09-12 10:51:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 10:51:59 -0400 |
commit | b23907e7ce8b4cf6e7e95abd3379bcae6715af7b (patch) | |
tree | 72db66d5dc11e7dc66d56da1e539c2b7e13d3930 /src/nvim/ex_cmds_defs.h | |
parent | 459f8ad80861be55ca091b8e7594f6bb61a804e0 (diff) | |
parent | 466ff35dfd72418458d9c629310cc52bb5428df2 (diff) | |
download | rneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.tar.gz rneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.tar.bz2 rneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.zip |
Merge pull request #12721 from aufarg/vim-8.1.0265
[RDY] vim-patch:8.1.{265,271,273,274,275,277,278,279,280,281,282,284,286,291,295,296,320,321,339,351,392,399,552}
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r-- | src/nvim/ex_cmds_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 1f0560ae48..ff5088ea5e 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -169,6 +169,10 @@ struct exarg { LineGetter getline; ///< Function used to get the next line void *cookie; ///< argument for getline() cstack_T *cstack; ///< condition stack for ":if" etc. + long verbose_save; ///< saved value of p_verbose + int save_msg_silent; ///< saved value of msg_silent + int did_esilent; ///< how many times emsg_silent was incremented + bool did_sandbox; ///< when true did sandbox++ }; #define FORCE_BIN 1 // ":edit ++bin file" |