help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Notion of previous buffer


From: Jean Louis
Subject: Notion of previous buffer
Date: Sat, 07 Jan 2023 20:14:03 +0300

After slight inspection of (previous-buffer) and running function in
newly invoked buffers, it seem I can use the function to detect from
which buffer was new buffer invoked.

Something like this may tell me which are previous buffers:
(window-prev-buffers (window-normalize-window nil t))

Though by "previous" it is meant the buffer which was visited before
the current buffer.

I need little different situation as to go to the invoking buffer,
rather then to buffer that was visited before visiting the current
buffer.

Invoking buffer is from where user generated or entered in new buffer.

Maybe somebody knows if this notion to be able to return to invoking
buffer already exists in Emacs packages?

Then if it does not exist, I wish to create that feature by defining
the permanent buffer local variable:

(defvar-local rcd-invoking-buffer nil
  "Name of the invoking buffer.")
(put 'rcd-invoking-buffer 'permanent-local t)

and then by invoking generating new buffer, I setup variable
`rcd-invoking-buffer' so to remember it and make customized
`quit-window' function to make sure to return to invoking buffer.


--
Jean

Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns

In support of Richard M. Stallman
https://stallmansupport.org/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]