add cmdline mode to modechange of RPC and tests

use set_cursor_shape_bar for cmdline mode

fix test of screen_basic_spec.lua & screen.lua

comment fix
This commit is contained in:
chemzqm
2016-11-26 07:39:33 +08:00
parent ecd7beb6e4
commit 3cf4b14e96
6 changed files with 65 additions and 7 deletions

View File

@@ -532,13 +532,16 @@ static void ui_mode_change(void)
if (!full_screen) {
return;
}
/* Get a simple UI mode out of State. */
if ((State & REPLACE) == REPLACE)
// Get a simple UI mode out of State.
if ((State & REPLACE) == REPLACE) {
mode = REPLACE;
else if (State & INSERT)
} else if (State & INSERT) {
mode = INSERT;
else
} else if (State & CMDLINE) {
mode = CMDLINE;
} else {
mode = NORMAL;
}
UI_CALL(mode_change, mode);
conceal_check_cursur_line();
}