[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Add support for shortdoc link type
From: |
Ihor Radchenko |
Subject: |
Re: [PATCH] Add support for shortdoc link type |
Date: |
Wed, 01 May 2024 11:00:18 +0000 |
Bruno Cardoso <cardoso.bc@gmail.com> writes:
> This patch adds support for "shortdoc:" links.
Thanks!
> --- a/etc/ORG-NEWS
> +++ b/etc/ORG-NEWS
You also need to document the new built-in link type in the manual.
> +(defun org-link--open-shortdoc (group _)
> + "Open a \"shortdoc\" type link.
> +GROUP is a symbol name."
> + (if (assoc (intern group) shortdoc--groups)
> + (shortdoc group)
> + (user-error "Unknown shortdoc group: %s" group)))
`shortdoc' function was only introduced in Emacs 29.
In Emacs 28, there is only `shortdoc-display-group'.
Please use the latter function, when `shortdoc' is not available.
In Emacs 27, shortdoc library is not yet present. So, please avoid
defining shortdoc: link type in Emacs <28.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
- Re: [PATCH] Add support for shortdoc link type,
Ihor Radchenko <=
- Re: [PATCH] Add support for shortdoc link type, Bruno Cardoso, 2024/05/01
- Re: [PATCH] Add support for shortdoc link type, Ihor Radchenko, 2024/05/01
- Re: [PATCH] Add support for shortdoc link type, Bruno Cardoso, 2024/05/01
- Re: [PATCH] Add support for shortdoc link type, Max Nikulin, 2024/05/02
- Re: [PATCH] Add support for shortdoc link type, Bruno Cardoso, 2024/05/03
- Re: [PATCH] Add support for shortdoc link type, Max Nikulin, 2024/05/04
- Re: [PATCH] Add support for shortdoc link type, Bruno Cardoso, 2024/05/04
- Re: [PATCH] Add support for shortdoc link type, Max Nikulin, 2024/05/05
- Re: [PATCH] Add support for shortdoc link type, Bruno Cardoso, 2024/05/05
- Re: [PATCH] Add support for shortdoc link type, Max Nikulin, 2024/05/06