mirror of
https://github.com/neovim/neovim.git
synced 2025-09-10 13:28:19 +00:00
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:
@@ -271,6 +271,8 @@ static void remote_ui_mode_change(UI *ui, int mode)
|
||||
ADD(args, STRING_OBJ(cstr_to_string("insert")));
|
||||
} else if (mode == REPLACE) {
|
||||
ADD(args, STRING_OBJ(cstr_to_string("replace")));
|
||||
} else if (mode == CMDLINE) {
|
||||
ADD(args, STRING_OBJ(cstr_to_string("cmdline")));
|
||||
} else {
|
||||
assert(mode == NORMAL);
|
||||
ADD(args, STRING_OBJ(cstr_to_string("normal")));
|
||||
|
Reference in New Issue
Block a user