summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-12 19:51:41 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-12 19:51:41 +0200
commit3cd43ccccb03b2e68df9c8a344a87e51c007c656 (patch)
tree51e41f2ba0520be2c6f4b0753538259545feca05 /src/proto
parent589b1109c55409baf27f79920d8ffc95111eaa01 (diff)
downloadvim-git-3cd43ccccb03b2e68df9c8a344a87e51c007c656.tar.gz
patch 8.0.0918: cannot get terminal window cursor shape or attributesv8.0.0918
Problem: Cannot get terminal window cursor shape or attributes. Solution: Support cursor shape, attributes and color.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/term.pro5
-rw-r--r--src/proto/ui.pro1
2 files changed, 5 insertions, 1 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro
index 57188e1da..63e644890 100644
--- a/src/proto/term.pro
+++ b/src/proto/term.pro
@@ -51,7 +51,10 @@ int mouse_model_popup(void);
void scroll_start(void);
void cursor_on(void);
void cursor_off(void);
-void term_cursor_shape(void);
+void term_cursor_mode(int forced);
+void term_cursor_color(char_u *color);
+void term_cursor_blink(int blink);
+void term_cursor_shape(int shape, int blink);
void scroll_region_set(win_T *wp, int off);
void scroll_region_reset(void);
void clear_termcodes(void);
diff --git a/src/proto/ui.pro b/src/proto/ui.pro
index 47c0fef68..4cf87b44f 100644
--- a/src/proto/ui.pro
+++ b/src/proto/ui.pro
@@ -47,6 +47,7 @@ void trash_input_buf(void);
int read_from_input_buf(char_u *buf, long maxlen);
void fill_input_buf(int exit_on_error);
void read_error_exit(void);
+void ui_cursor_shape_forced(int forced);
void ui_cursor_shape(void);
int check_col(int col);
int check_row(int row);