GNU bug report logs -
#74246
[PATCH] Reuse display windows in image-dired
Previous Next
Full log
View this message in rfc822 format
>> Still too limited solution when the users can't store the last window
>> for other commands. Better would be to add a new alist entry that
>> will force 'display-buffer' to remember the last window from any call:
>>
>> (display-buffer buffer `((nil (category . compilation)
>> (remember-last-window . t))))
>>
>> or by user customization of display-buffer-alist:
>>
>> ((category . compilation)
>> (nil (remember-last-window . t)))
>
> In that case the 'last-window' parameter maintained by 'display-buffer'
> would have to become a list of categories. Then what about two grep
> operations running in parallel as you mention above: Would they share
> the same target window?
The only different things two grep operations don't share are their
source buffers. Therefore need to save the last window in the buffer-local
variable in each grep buffer. They can share the same target window
if the user wants.
>> And a function that stores/restores the last window could be customizable as well.
>> So the users could decide whether to save it in a buffer-local variable,
>
> ... buffer-local where - in the source or the target buffer?
In the source buffer. But it should be possible to redefine the function
to use the target buffer, e.g.:
(remember-last-window .
(lambda (source-buffer target-buffer source-window target-window)
(with-current-buffer target-buffer
(setq-local last-window target-window))))
or
(remember-last-window .
(lambda (source-buffer target-buffer source-window target-window)
(set-window-parameter source-window 'last-window target-window)))
>> or in the window parameter. This option could be like 'xref-history-storage'
>> that provides the choice of 'xref-global-history' or 'xref-window-local-history':
>>
>> ((category . compilation)
>> (nil (remember-last-window . global)))
>>
>> or
>>
>> ((category . compilation)
>> (nil (remember-last-window . window-local)))
>>
>> or
>>
>> ((category . compilation)
>> (nil (remember-last-window . buffer-local)))
>
> Just think of describing this in the manual.
No problem.
> But I already see: We'll have to maintain a buffer-local variable, say
> 'xref-last-window' in the source buffer, have xref consult that variable
> and pass it as (last-window . ,xref-last-window) to 'display-buffer'.
> The value returned by 'display-buffer' would then become the new value
> of 'xref-last-window' in the source buffer. Would that be OK with you?
This should not be specific to packages. It should be general to be usable
for any display-buffer call.
This bug report was last modified 182 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.