diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-02 02:32:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-02 02:32:36 +0200 |
commit | 58422f17d8e7e5f2dcba099b8829e5d23554e980 (patch) | |
tree | 0ba8bc13df4a3712b182e17ca65ce9ca7fe45ecd /src/nvim/ui.h | |
parent | a7569b50b769b61a2f10a024fab040443bd3e906 (diff) | |
parent | 3a69dbfca6642463ca8e19f814f71791f66332f3 (diff) | |
download | rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.tar.gz rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.tar.bz2 rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.zip |
Merge #6423 from justinmk/guicursor
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); |