summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-08-07 17:38:41 +0200
committerBram Moolenaar <Bram@vim.org>2018-08-07 17:38:41 +0200
commit917e32bda5a93941fbbccab09ae3960114b67188 (patch)
treecb6ca0ec9d5f36da3a40d4efafd080d9830b7d47 /src/proto
parent5db7eec42337f0eecdc332f582eecf37278044e8 (diff)
downloadvim-git-917e32bda5a93941fbbccab09ae3960114b67188.tar.gz
patch 8.1.0244: no redraw when using a STOP signal on Vim and then CONTv8.1.0244
Problem: No redraw when using a STOP signal on Vim and then a CONT signal. Solution: Catch the CONT signal and force a redraw. (closes #3285)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/term.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro
index 7eafdeffa..9a9606baf 100644
--- a/src/proto/term.pro
+++ b/src/proto/term.pro
@@ -50,6 +50,7 @@ void setmouse(void);
int mouse_has(int c);
int mouse_model_popup(void);
void scroll_start(void);
+void cursor_on_force(void);
void cursor_on(void);
void cursor_off(void);
void term_cursor_mode(int forced);