diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-12-23 14:35:23 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 16:24:07 +0100 |
commit | 1cec5542a83baf04848e37475b9b0b7f50e47284 (patch) | |
tree | b3ce77a147675ea07f95d9a237ca591fd4e2a0ad /src/nvim/ui.c | |
parent | 820c81e638768994f4e51fdb87eadf31664048ff (diff) | |
download | rneovim-1cec5542a83baf04848e37475b9b0b7f50e47284.tar.gz rneovim-1cec5542a83baf04848e37475b9b0b7f50e47284.tar.bz2 rneovim-1cec5542a83baf04848e37475b9b0b7f50e47284.zip |
multigrid: reorganize types and global varaibles
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index da6a1d0f2a..302aa555af 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -57,7 +57,7 @@ static int busy = 0; static int mode_idx = SHAPE_IDX_N; static bool pending_mode_info_update = false; static bool pending_mode_update = false; -static GridHandle cursor_grid_handle = DEFAULT_GRID_HANDLE; +static handle_T cursor_grid_handle = DEFAULT_GRID_HANDLE; #if MIN_LOG_LEVEL > DEBUG_LOG_LEVEL # define UI_LOG(funname, ...) @@ -443,7 +443,7 @@ Array ui_array(void) return all_uis; } -void ui_grid_resize(GridHandle grid_handle, int width, int height, Error *error) +void ui_grid_resize(handle_T grid_handle, int width, int height, Error *error) { if (grid_handle == DEFAULT_GRID_HANDLE) { screen_resize(width, height); |