mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
Remove EXMODE_NORMAL
This commit is contained in:
@@ -171,12 +171,10 @@ char *get_mode(void)
|
||||
buf[1] = 'x';
|
||||
}
|
||||
}
|
||||
} else if ((State & CMDLINE) || exmode_active) {
|
||||
} else if (State & CMDLINE) {
|
||||
buf[0] = 'c';
|
||||
if (exmode_active == EXMODE_VIM) {
|
||||
if (exmode_active) {
|
||||
buf[1] = 'v';
|
||||
} else if (exmode_active == EXMODE_NORMAL) {
|
||||
buf[1] = 'e';
|
||||
}
|
||||
} else if (State & TERM_FOCUS) {
|
||||
buf[0] = 't';
|
||||
|
Reference in New Issue
Block a user