diff options
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index e0bbba3d68..15152bc1a4 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -464,6 +464,8 @@ EXTERN bool VIsual_active INIT( = false); EXTERN bool VIsual_select INIT( = false); /// Register name for Select mode EXTERN int VIsual_select_reg INIT( = 0); +/// Whether incremented cursor during exclusive selection +EXTERN bool VIsual_select_exclu_adj INIT( = false); /// Restart Select mode when next cmd finished EXTERN int restart_VIsual_select INIT( = 0); /// Whether to restart the selection after a Select-mode mapping or menu. |