diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-20 06:33:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 06:33:55 +0800 |
commit | 1ef84547a8ed4b237fbfbe673f1e9c4cd863ff0b (patch) | |
tree | ce6987a5e351d2c4d529edfe1466d291efc75fe2 /src/nvim/memory.c | |
parent | 8620dfc5bdedc26e24119eb016d7e6121e9b49b6 (diff) | |
parent | 420bb2eb8a583391c38a1e6d60132a70de21d99e (diff) | |
download | rneovim-1ef84547a8ed4b237fbfbe673f1e9c4cd863ff0b.tar.gz rneovim-1ef84547a8ed4b237fbfbe673f1e9c4cd863ff0b.tar.bz2 rneovim-1ef84547a8ed4b237fbfbe673f1e9c4cd863ff0b.zip |
Merge pull request #19415 from zeertzjq/vim-8.1.1076
vim-patch:8.1.{1076,1849}: file for Insert mode is much too big
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r-- | src/nvim/memory.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 4d5cf047f9..a74fcf6137 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -14,6 +14,7 @@ #include "nvim/eval.h" #include "nvim/highlight.h" #include "nvim/highlight_group.h" +#include "nvim/insexpand.h" #include "nvim/lua/executor.h" #include "nvim/mapping.h" #include "nvim/memfile.h" @@ -710,6 +711,7 @@ void free_all_mem(void) free_search_patterns(); free_old_sub(); free_last_insert(); + free_insexpand_stuff(); free_prev_shellcmd(); free_regexp_stuff(); free_tag_stuff(); |