From: Dmitry Gutov <dmitry@gutov.dev>
To: Morgan Willcock <morgan@ice9.digital>, emacs-devel@gnu.org
Subject: Re: Setup process for etags-regen-mode (Emacs 30.0.91 feedback)
Date: Mon, 23 Sep 2024 20:17:53 +0300 [thread overview]
Message-ID: <f20d88c7-bffe-4b9a-ae21-95144c1a5fbb@gutov.dev> (raw)
In-Reply-To: <878qvm42ha.fsf@ice9.digital>
Hi!
On 20/09/2024 21:14, Morgan Willcock wrote:
> When testing etags-regen-mode in the Emacs 30 pre-release I've found it
> to be working well for my use-case, but one thing which appears to be
> missing is an easy way for additional completion functions to opt-in to
> the etags-regen-mode setup process.
>
> Currently the completion functions which get advice added to them (to
> call etags-regen--maybe-generate) are hard coded in the mode definition:
>
> (if etags-regen-mode
> (progn
> (advice-add 'etags--xref-backend :before
> #'etags-regen--maybe-generate )
> (advice-add 'tags-completion-at-point-function :before
> #'etags-regen--maybe-generate))
> (advice-remove 'etags--xref-backend #'etags-regen--maybe-generate)
> (advice-remove 'tags-completion-at-point-function #'etags-regen--maybe-generate)
> (etags-regen--tags-cleanup))
>
> I was looking for a stable entry point to opt-in to using it, rather
> than having to do something like this:
>
> (advice-add 'my-completion-function-which-does-things-with-tags :before
> #'etags-regen--maybe-generate)
>
> (Where the "--" in the function name is a sign that I probably shouldn't
> be doing that.)
>
> I wasn't sure whether it was intentional to hard-code the functions to
> advise while etags-regen-mode was still so new, or whether opting in
> other functions hadn't been considered.
Hadn't been considered yet, but I'm open to the idea. Two basic
approaches is either through a new custom variable, or by making the
function "public".
The latter is a bit tricky because then we'd need to document what it
does - and it basically launches all the work ((re)scanning the table,
adding the hooks), and that setup might change over time.
> Would it be possible to store the completion functions which will be
> advised as a separate list, so that other packages can add completion
> functions to that list and get the TAGS generation to trigger? Or is
> this an intentional boundary?
The custom variable approach seems better, but we'll need to test how it
interacts with being able to switch etags-regen-mode on by default.
next prev parent reply other threads:[~2024-09-23 17:17 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-20 18:14 Setup process for etags-regen-mode (Emacs 30.0.91 feedback) Morgan Willcock
2024-09-23 17:17 ` Dmitry Gutov [this message]
2024-09-23 19:03 ` Morgan Willcock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f20d88c7-bffe-4b9a-ae21-95144c1a5fbb@gutov.dev \
--to=dmitry@gutov.dev \
--cc=emacs-devel@gnu.org \
--cc=morgan@ice9.digital \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.