diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-11-15 00:10:39 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-11-15 04:22:24 +0100 |
commit | 3f7a2d785dcc8c3dad341669c83f29779987d9a4 (patch) | |
tree | ea4f1e8e75a81a01c0807c61721d93531251b695 /src/nvim/ex_cmds_defs.h | |
parent | 708617ebb6aa9f078549646930c73f0755c2c2e6 (diff) | |
download | rneovim-3f7a2d785dcc8c3dad341669c83f29779987d9a4.tar.gz rneovim-3f7a2d785dcc8c3dad341669c83f29779987d9a4.tar.bz2 rneovim-3f7a2d785dcc8c3dad341669c83f29779987d9a4.zip |
'inccommand': Introduce CMDPREVIEW state.
Command "live preview" is fundamentally a non-recursive concept
("preview of a preview" is not useful). Maintaining this as a
global is less awkward and closer to what we actually want to
express, vs adorning exarg_T, CommandLineState, etc.
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r-- | src/nvim/ex_cmds_defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 8a2ebe2cd4..8148eb5cee 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -124,7 +124,6 @@ struct exarg { LineGetter getline; ///< Function used to get the next line void *cookie; ///< argument for getline() struct condstack *cstack; ///< condition stack for ":if" etc. - bool is_live; ///< 'inccommand' live preview }; #define FORCE_BIN 1 // ":edit ++bin file" |