mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-28 11:11:47 +02:00
Also allow using at-cmd
This commit is contained in:
@@ -66,6 +66,9 @@ def resolve_ref(ref: str, website_url: Callable[[str], str] = website_url) -> st
|
||||
elif ref.startswith('at_'):
|
||||
base = ref.split('_', 1)[1]
|
||||
href = "remote-control/#at-" + base.replace('_', '-')
|
||||
elif ref.startswith('at-'):
|
||||
base = ref.split('-', 1)[1]
|
||||
href = "remote-control/#at-" + base.replace('_', '-')
|
||||
elif ref.startswith('action-group-'):
|
||||
href = f'actions/#{ref}'
|
||||
elif prefix == 'action':
|
||||
|
||||
Reference in New Issue
Block a user