diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-15 23:02:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-15 23:02:04 +0200 |
commit | 8aeec40207b5adcd3a155277dc4f29189343b963 (patch) | |
tree | 4c62d41b6474eaddb0d2ad4c088bb6931b39b9ce /src/autocmd.c | |
parent | ea8dcf8346f488786023fd03ec1c013cda243040 (diff) | |
download | vim-git-8aeec40207b5adcd3a155277dc4f29189343b963.tar.gz |
patch 8.1.2044: no easy way to process postponed workv8.1.2044
Problem: No easy way to process postponed work. (Paul Jolly)
Solution: Add the SafeState autocommand event.
Diffstat (limited to 'src/autocmd.c')
-rw-r--r-- | src/autocmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/autocmd.c b/src/autocmd.c index 8a6896bae..fb6c84491 100644 --- a/src/autocmd.c +++ b/src/autocmd.c @@ -155,6 +155,7 @@ static struct event_name {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE}, {"QuitPre", EVENT_QUITPRE}, {"RemoteReply", EVENT_REMOTEREPLY}, + {"SafeState", EVENT_SAFESTATE}, {"SessionLoadPost", EVENT_SESSIONLOADPOST}, {"ShellCmdPost", EVENT_SHELLCMDPOST}, {"ShellFilterPost", EVENT_SHELLFILTERPOST}, |