diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-14 10:58:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 10:58:29 +0800 |
commit | 37bb40701d672d5213ec1be4e21d7808aee968e7 (patch) | |
tree | 8f2c7db06448099e9ee768e2dbd718514e5ef9ca /src/nvim/ex_cmds_defs.h | |
parent | f64f6706e58061f0a3de530edd1f10e331cd1525 (diff) | |
parent | e8c25aac8d864e7033bcfe4640ee44054035f61d (diff) | |
download | rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.tar.gz rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.tar.bz2 rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.zip |
Merge pull request #23078 from zeertzjq/vim-8.2.1047
vim-patch:8.2.{1047,1048,1049,1050,1052},9.0.1447
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r-- | src/nvim/ex_cmds_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 629aaf14cf..7932649114 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -185,6 +185,7 @@ struct exarg { char *nextcmd; ///< next command (NULL if none) char *cmd; ///< the name of the command (except for :make) char **cmdlinep; ///< pointer to pointer of allocated cmdline + char *cmdline_tofree; ///< free later cmdidx_T cmdidx; ///< the index for the command uint32_t argt; ///< flags for the command int skip; ///< don't execute the command, only parse it |