diff --git a/kitty/conf/types.py b/kitty/conf/types.py index e39e25d69..f46ebfbaa 100644 --- a/kitty/conf/types.py +++ b/kitty/conf/types.py @@ -65,7 +65,7 @@ def resolve_ref(ref: str, website_url: Callable[[str], str] = website_url) -> st href = "kittens/" + parts[2] + f'/#{ref}' elif ref.startswith('at_'): base = ref.split('_', 1)[1] - href = "remote-control/#at_" + base.replace('_', '-') + href = "remote-control/#at-" + base.replace('_', '-') elif ref.startswith('action-group-'): href = f'actions/#{ref}' elif prefix == 'action': diff --git a/kitty_tests/check_build.py b/kitty_tests/check_build.py index e8cb7aebd..5ec3f878b 100644 --- a/kitty_tests/check_build.py +++ b/kitty_tests/check_build.py @@ -88,7 +88,7 @@ class TestBuild(BaseTest): t('#ref=confloc', f'conf{suffix}#confloc') t('#ref=conf-kitty-fonts', f'conf{suffix}#conf-kitty-fonts') t('#ref=conf-kitten-ssh-xxx', f'kittens/ssh{suffix}#conf-kitten-ssh-xxx') - t('#ref=at_close_tab', f'remote-control{suffix}#at_close-tab') + t('#ref=at_close_tab', f'remote-control{suffix}#at-close-tab') t('#ref=action-copy', f'actions{suffix}#copy') t('#ref=doc-/marks', f'marks{suffix}')