From e33f882abc5fa7c6b84bd0b23f624a5aa531454f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Feb 2020 17:52:40 +0530 Subject: [PATCH] Changelog entry for cursor beam thickness option --- docs/changelog.rst | 3 +++ kitty/config_data.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2591554af..58b9fe24c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,9 @@ To update |kitty|, :doc:`follow the instructions `. - A new :opt:`background_tint` option to darken the background under the text area when using background images and/or transparent windows. +- A new :opt:`cursor_beam_thickness` option to control the thickness of the + beam cursor (:iss:`2337`) + 0.16.0 [2020-01-28] diff --git a/kitty/config_data.py b/kitty/config_data.py index 6355626d9..dd52062d8 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -395,7 +395,7 @@ background color of the cell underneath instead, use the special keyword: backgr o('cursor_shape', 'block', option_type=to_cursor_shape, long_text=_( 'The cursor shape can be one of (block, beam, underline)')) o('cursor_beam_thickness', 1.5, option_type=positive_float, long_text=_( - 'Defines the thickness of the beam cursor')) + 'Defines the thickness of the beam cursor (in pts)')) o('cursor_blink_interval', -1, option_type=float, long_text=_(''' The interval (in seconds) at which to blink the cursor. Set to zero to disable blinking. Negative values mean use system default. Note that numbers smaller