diff --git a/docs/changelog.rst b/docs/changelog.rst index fd0931c0e..0f5112346 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,6 +11,9 @@ To update |kitty|, :doc:`follow the instructions `. - 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] -------------------- diff --git a/kitty/config_data.py b/kitty/config_data.py index 317a48fb8..92547e7de 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -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.'''))