From a54586dfa99d5e20b9085ac0b529d55c9697f17d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 3 Nov 2023 09:12:17 +0530 Subject: [PATCH] Add a note about dynamic config reload behavior of underline_hyperlinks --- kitty/options/definition.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kitty/options/definition.py b/kitty/options/definition.py index 1c39f9efc..4f3960d19 100644 --- a/kitty/options/definition.py +++ b/kitty/options/definition.py @@ -515,9 +515,11 @@ be activated when the hyperlink is clicked. opt('underline_hyperlinks', 'hover', choices=('hover', 'always', 'never'), ctype='underline_hyperlinks', long_text=''' Control how hyperlinks are underlined. They can either be underlined on mouse -``hover``, ``always`` (i.e. permanently underlined) or ``never`` which means +:code:`hover`, :code:`always` (i.e. permanently underlined) or :code:`never` which means that kitty will not apply any underline styling to hyperlinks. -Uses the :opt:`url_style` and :opt:`url_color` settings for the underline style. +Uses the :opt:`url_style` and :opt:`url_color` settings for the underline style. Note +that reloading the config and changing this value to/from :code:`always` will only +affect text subsequently received by kitty. ''')