diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-12-09 21:10:58 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-12-09 21:10:58 +0100 |
commit | 51822f065590154561a59435ca920207fd39bdda (patch) | |
tree | 68b23bad187daef4b6a01628747d87c0d1f60526 /src/nvim/buffer_defs.h | |
parent | 2ec0e0a868ba20373ef4cd2d2540db7e829ddc56 (diff) | |
download | rneovim-51822f065590154561a59435ca920207fd39bdda.tar.gz rneovim-51822f065590154561a59435ca920207fd39bdda.tar.bz2 rneovim-51822f065590154561a59435ca920207fd39bdda.zip |
refactor(misc1): move out autocmd related functions
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index e53b2d1dfa..49e527e98b 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1116,12 +1116,6 @@ typedef struct { pos_T w_cursor_corr; // corrected cursor position } pos_save_T; -// Struct passed to get_v_event() and restore_v_event(). -typedef struct { - bool sve_did_save; - hashtab_T sve_hashtab; -} save_v_event_T; - /// Indices into vimmenu_T->strings[] and vimmenu_T->noremap[] for each mode /// \addtogroup MENU_INDEX /// @{ |