patch 8.2.2128: there is no way to do something on CTRL-Z
Problem: There is no way to do something on CTRL-Z.
Solution: Add VimSuspend and VimResume autocommand events. (closes #7450)
diff --git a/src/vim.h b/src/vim.h
index eda0734..d6c1f46 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1344,6 +1344,8 @@
EVENT_WINENTER, // after entering a window
EVENT_WINLEAVE, // before leaving a window
EVENT_WINNEW, // when entering a new window
+ EVENT_VIMSUSPEND, // before Vim is suspended
+ EVENT_VIMRESUME, // after Vim is resumed
NUM_EVENTS // MUST be the last one
};