diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-11-30 22:13:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 22:13:50 -0500 |
commit | 828bf128a64466f254629b102e283af35666cd05 (patch) | |
tree | 6cda5c2df8d799d87d86dcfabc595e2737b8feda /src/nvim/globals.h | |
parent | 2635b77dba6fa218871441fa3380860405bf9240 (diff) | |
parent | 980c68d0362c3ca099c0facef2d08efede76aabf (diff) | |
download | rneovim-828bf128a64466f254629b102e283af35666cd05.tar.gz rneovim-828bf128a64466f254629b102e283af35666cd05.tar.bz2 rneovim-828bf128a64466f254629b102e283af35666cd05.zip |
Merge pull request #15840 from vimpostor/vim-8.2.3430
vim-patch:8.2.{3430,3434,3462,3463,3555,3609,3610}: ModeChanged autocmd
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index b5e1fda9f1..7ae7b65702 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -727,6 +727,7 @@ EXTERN bool listcmd_busy INIT(= false); // set when :argdo, :windo or // :bufdo is executing EXTERN bool need_start_insertmode INIT(= false); // start insert mode soon +EXTERN char *last_mode INIT(= NULL); EXTERN char_u *last_cmdline INIT(= NULL); // last command line (for ":) EXTERN char_u *repeat_cmdline INIT(= NULL); // command line for "." EXTERN char_u *new_last_cmdline INIT(= NULL); // new value for last_cmdline |