GNU bug report logs -
#74361
[PATCH] New option xref-navigation-display-window-action
Previous Next
Full log
Message #20 received at 74361 <at> debbugs.gnu.org (full text, mbox):
Hi Juri,
On 15/11/2024 09:49, Juri Linkov wrote:
> This option looks similar to 'display-comint-buffer-action'
> whose addition was deemed to be a mistake, so we needed to declare it
> obsolete and replace it with '(category . comint)'.
>
> So instead of adding 'xref-navigation-display-window-action',
> could you just add a category 'xref' to xref display function calls?
> Then users will be able to customize it with e.g.:
>
> (setq display-buffer-alist '(((category . xref)
> (display-buffer-reuse-window))))
>
> Or maybe I misunderstand other requirements for this feature.
Thanks for the comments. The other priority here (I think) seems to
retain the current behavior by default:
You can see this decision being made in
(defun xref--switch-to-buffer (buf)
(if xref-navigation-display-window-action
(pop-to-buffer buf xref-navigation-display-window-action)
(switch-to-buffer buf)))
So... I suppose one way to do that would be to add an option in Xref
which make it use 'pop-to-buffer' instead of 'switch-to-buffer' (similar
to 'switch-to-buffer-obey-display-actions'). And then the user would
customize 'display-buffer-alist' like in your example. Something like:
(setq xref-navigation-obey-display-actions t
display-buffer-alist '(((category . xref)
(display-buffer-reuse-window))))
Is that not too complex, what do we think?
> Ok, meanwhile I'll play more with your patch to see if 'category'
> could really help here.
Thank you.
This bug report was last modified 172 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.