Allow linking to discussions in docs

This commit is contained in:
Kovid Goyal 2021-07-31 11:51:03 +05:30
parent c26665ec4d
commit 65e5015d19
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 2 deletions

View File

@ -15,8 +15,8 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- macOS: Fix an error on Apple silicon when enumerating monitors (:pull:`3875`)
- Allow specifying the previously active tab or the tab to the left/right of
the active tab
- detach_window: Allow specifying the previously active tab or the tab to the left/right of
the active tab (:disc:`3877`)
- broadcast kitten: Fix a regression in ``0.20.0`` that broke sending of some
keys, such as backspace

View File

@ -516,4 +516,5 @@ def setup(app: Any) -> None:
app.add_role('link', link_role)
app.add_role('iss', partial(num_role, 'issues'))
app.add_role('pull', partial(num_role, 'pull'))
app.add_role('disc', partial(num_role, 'discussions'))
app.add_role('commit', commit_role)