summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-21 21:39:28 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-21 21:39:28 +0200
commit0cbba82359ff9f061aa65632cec7b6b57ae6d6e7 (patch)
treec97fc13442bec33d20f0b68f1f880dd205ee8d88
parentb109bb4e1208753cb286b39992b58126d5aa4ce6 (diff)
patch 8.0.0981: cursor in terminal window blinks by defaultv8.0.0981
Problem: Cursor in terminal window blinks by default, while in a real xterm it does not blink, unless the -bc argument is used. Solution: Do not use a blinking cursor by default.
-rw-r--r--src/terminal.c8
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/terminal.c b/src/terminal.c
index fbc3cf9c98..a2f57a4bcd 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -38,7 +38,7 @@
* in tl_scrollback are no longer used.
*
* TODO:
- * - test writing lines to terminal job when implemented for MS-Windows
+ * - test for writing lines to terminal job does not work on MS-Windows
* - implement term_setsize()
* - add test for giving error for invalid 'termsize' value.
* - support minimal size when 'termsize' is "rows*cols".
@@ -2186,6 +2186,7 @@ create_vterm(term_T *term, int rows, int cols)
{
VTerm *vterm;
VTermScreen *screen;
+ VTermValue value;
vterm = vterm_new(rows, cols);
term->tl_vterm = vterm;
@@ -2210,6 +2211,11 @@ create_vterm(term_T *term, int rows, int cols)
/* Allow using alternate screen. */
vterm_screen_enable_altscreen(screen, 1);
+
+ /* We do not want a blinking cursor by default. */
+ value.boolean = 0;
+ vterm_state_set_termprop(vterm_obtain_state(vterm),
+ VTERM_PROP_CURSORBLINK, &value);
}
/*
diff --git a/src/version.c b/src/version.c
index c8ae29752c..25ec8cbfc3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 981,
+/**/
980,
/**/
979,