all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: [Solved] RE: How to bring previous-buffer to cycle through the full list of buffers
@ 2015-05-12  9:36 martin rudalics
  2015-05-13  9:49 ` Jürgen Hartmann
  0 siblings, 1 reply; 3+ messages in thread
From: martin rudalics @ 2015-05-12  9:36 UTC (permalink / raw)
  To: juergen_hartmann_; +Cc: help-gnu-emacs

 > (It should read "buffer" instead of "new-buffer".)

I was blindly pasting from another part of the function.

 > In the tests I performed up to now I could not find any adversary effects. If
 > there are some, they are well hidden and will hardly be traced back to this
 > modification. :-)

We could make this the default behavior.  If you see no problems within
a month or so, write up a patch (fixing the documentations accordingly)
and post it in a bug report.

Thanks, martin



^ permalink raw reply	[flat|nested] 3+ messages in thread
* Re: How to bring previous-buffer to cycle through the full list of buffers
@ 2015-05-10 12:29 martin rudalics
  2015-05-11  7:55 ` [Solved] " Jürgen Hartmann
  0 siblings, 1 reply; 3+ messages in thread
From: martin rudalics @ 2015-05-10 12:29 UTC (permalink / raw)
  To: juergen_hartmann_; +Cc: help-gnu-emacs

 > After the windows history is exhausted by repetitively applying
 > previous-buffer, the cycling continues with all the other buffers in the
 > global buffer list, but this time unconditionally skipping those of them that
 > are visible in other windows--regardless of the setting in
 > switch-to-visible-buffer.

Try to replace the line

	  (if (get-buffer-window buffer frame)

with

	  (if (and (not switch-to-visible-buffer)
		   (get-buffer-window new-buffer frame))

in both `switch-to-prev-buffer' and `switch-to-next-buffer' (move these
functions to your .emacs if you cannot rebuild Emacs).

I didn't test this and don't know whether it has any adversary effect,
so you may have to play around with it ;-)

martin



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-13  9:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-12  9:36 [Solved] RE: How to bring previous-buffer to cycle through the full list of buffers martin rudalics
2015-05-13  9:49 ` Jürgen Hartmann
  -- strict thread matches above, loose matches on Subject: below --
2015-05-10 12:29 martin rudalics
2015-05-11  7:55 ` [Solved] " Jürgen Hartmann

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.