By default, double clicking no longer considers the : as part of words

Fixes #2602
This commit is contained in:
Kovid Goyal 2020-04-28 19:57:40 +05:30
parent 53ae2bbe0d
commit 696b857f91
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,9 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- macOS: Fix a regression in the previous release that caused ligatures to be
not be centered horizontally (:iss:`2591`)
- By default, double clicking no longer considers the : as part of words, see
:opt:`select_by_word_characters` (:iss:`2602`)
0.17.3 [2020-04-23]
--------------------

View File

@ -548,7 +548,7 @@ rectangular block with the mouse)'''))
o('terminal_select_modifiers', 'shift', option_type=to_modifiers, long_text=_('''
The modifiers to override mouse selection even when a terminal application has grabbed the mouse'''))
o('select_by_word_characters', ':@-./_~?&=%+#', long_text=_('''
o('select_by_word_characters', '@-./_~?&=%+#', long_text=_('''
Characters considered part of a word when double clicking. In addition to these characters
any character that is marked as an alphanumeric character in the unicode
database will be matched.'''))