diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-27 05:41:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 05:41:41 +0800 |
commit | 77458e613b67b9e7607ae781bcfbdc2ff6b1b2ef (patch) | |
tree | 7533d462b043d9f7a8f52e0c1669aabebc83eeb8 /src | |
parent | de87197fdc3aa8123a060fc3a780e087c8e258ac (diff) | |
download | rneovim-77458e613b67b9e7607ae781bcfbdc2ff6b1b2ef.tar.gz rneovim-77458e613b67b9e7607ae781bcfbdc2ff6b1b2ef.tar.bz2 rneovim-77458e613b67b9e7607ae781bcfbdc2ff6b1b2ef.zip |
vim-patch:9.1.0207: No autocommand when writing session file (#28048)
Problem: No autocommand when writing session file
Solution: Add SessionWritePost autocommand
(Colin Kennedy)
fixes: vim/vim#14242
closes: vim/vim#14288
https://github.com/vim/vim/commit/e5f2280381250801a28dcff9823e6f94e7b163fc
Co-authored-by: Colin Kennedy <colinvfx@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/auevents.lua | 1 | ||||
-rw-r--r-- | src/nvim/ex_session.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index b931907fe3..3946ffd960 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -88,6 +88,7 @@ return { 'SafeState', -- going to wait for a character 'SearchWrapped', -- after the search wrapped around 'SessionLoadPost', -- after loading a session file + 'SessionWritePost', -- after writing a session file 'ShellCmdPost', -- after ":!cmd" 'ShellFilterPost', -- after ":1,2!cmd", ":w !cmd", ":r !cmd". 'Signal', -- after nvim process received a signal diff --git a/src/nvim/ex_session.c b/src/nvim/ex_session.c index fb37bc86f1..416f18ccc5 100644 --- a/src/nvim/ex_session.c +++ b/src/nvim/ex_session.c @@ -12,6 +12,7 @@ #include "nvim/arglist.h" #include "nvim/arglist_defs.h" #include "nvim/ascii_defs.h" +#include "nvim/autocmd.h" #include "nvim/buffer.h" #include "nvim/buffer_defs.h" #include "nvim/eval.h" @@ -1092,6 +1093,8 @@ void ex_mkrc(exarg_T *eap) } xfree(viewFile); + + apply_autocmds(EVENT_SESSIONWRITEPOST, NULL, NULL, false, curbuf); } /// @return the name of the view file for the current buffer. |