diff options
author | Matthieu Coudron <mattator@gmail.com> | 2017-03-20 22:56:58 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-01 23:14:05 +0200 |
commit | dd4a5fcbb65ade08b5d2c7951b2924d2d04dc99e (patch) | |
tree | 398b4811259964de8f16b5adf034698b46a2e5c4 /src/nvim/ui.h | |
parent | 16babc66870b5579f3305fa1289f25e1dc496655 (diff) | |
download | rneovim-dd4a5fcbb65ade08b5d2c7951b2924d2d04dc99e.tar.gz rneovim-dd4a5fcbb65ade08b5d2c7951b2924d2d04dc99e.tar.bz2 rneovim-dd4a5fcbb65ade08b5d2c7951b2924d2d04dc99e.zip |
tui: 'guicursor' shape #6044
Closes #2583
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index d14bc5812c..0af0c0db65 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -22,6 +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 (*update_menu)(UI *ui); void (*busy_start)(UI *ui); void (*busy_stop)(UI *ui); |