mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
vim-patch:8.2.3236: mode() does not indicate using CTRL-O in Select mode
Problem: mode() does not indicate using CTRL-O in Select mode.
Solution: Use "vs" and similar. (closes vim/vim#8640)
eaf3f36168
This commit is contained in:
@@ -144,6 +144,9 @@ char *get_mode(void)
|
||||
buf[0] = (char)(VIsual_mode + 's' - 'v');
|
||||
} else {
|
||||
buf[0] = (char)VIsual_mode;
|
||||
if (restart_VIsual_select) {
|
||||
buf[1] = 's';
|
||||
}
|
||||
}
|
||||
} else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
|
||||
|| State == CONFIRM) {
|
||||
|
Reference in New Issue
Block a user