diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-04 15:26:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 15:26:32 +0200 |
commit | 4566f7c7cda2c3a181ec58998f7c93dd17500153 (patch) | |
tree | 049ef60e8dd071342b5c075592c035715d676fef /src/nvim/ui.h | |
parent | 9d560d5c6b02d34690ca47ee6f32e31ee4a6d90e (diff) | |
parent | a7f34e199144bfb657c180cdc1413093fd34bdf9 (diff) | |
download | rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.tar.gz rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.tar.bz2 rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.zip |
Merge #6432 from justinmk/guicursor
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 0af0c0db65..8ffc5a45a6 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -22,7 +22,7 @@ struct ui_t { void (*clear)(UI *ui); void (*eol_clear)(UI *ui); void (*cursor_goto)(UI *ui, int row, int col); - void (*cursor_style_set)(UI *ui, Dictionary cursor_shapes); + void (*cursor_style_set)(UI *ui, bool enabled, Dictionary cursor_styles); void (*update_menu)(UI *ui); void (*busy_start)(UI *ui); void (*busy_stop)(UI *ui); |