window: allow resize wincmds for floats

This commit is contained in:
Björn Linse
2019-06-10 15:42:09 +02:00
parent 44e150bd46
commit d11a146516
4 changed files with 374 additions and 22 deletions

View File

@@ -372,6 +372,14 @@ void ui_grid_cursor_goto(handle_T grid_handle, int new_row, int new_col)
pending_cursor_update = true;
}
/// moving the cursor grid will implicitly move the cursor
void ui_check_cursor_grid(handle_T grid_handle)
{
if (cursor_grid_handle == grid_handle) {
pending_cursor_update = true;
}
}
void ui_mode_info_set(void)
{
pending_mode_info_update = true;