aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/autocmd_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/autocmd_defs.h')
-rw-r--r--src/nvim/autocmd_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/autocmd_defs.h b/src/nvim/autocmd_defs.h
index d1f1e16e1a..6535f8a7ea 100644
--- a/src/nvim/autocmd_defs.h
+++ b/src/nvim/autocmd_defs.h
@@ -14,7 +14,6 @@
/// Struct to save values in before executing autocommands for a buffer that is
/// not the current buffer.
typedef struct {
- buf_T *save_curbuf; ///< saved curbuf
int use_aucmd_win_idx; ///< index in aucmd_win[] if >= 0
handle_T save_curwin_handle; ///< ID of saved curwin
handle_T new_curwin_handle; ///< ID of new curwin
@@ -23,6 +22,7 @@ typedef struct {
char *globaldir; ///< saved value of globaldir
bool save_VIsual_active; ///< saved VIsual_active
int save_State; ///< saved State
+ int save_prompt_insert; ///< saved b_prompt_insert
} aco_save_T;
typedef struct {