In Emacs how to switch to other buffer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:40:10Z http://stackoverflow.com/feeds/question/188488 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer 1 In Emacs how to switch to other buffer? avp 2008-10-09T18:16:37Z 2009-10-31T19:58:02Z <p>The problem is following: I want to automate the way my emacs starts. It has to be split in two buffers and the slime-repl has to be started in the smallest (bottom) buffer. Plus, I want my file to be opened in the bigger (upper) buffer. In my .emacs there are lines:</p> <pre><code>(slime) ... (split-window-vertically -6) (switch-to-buffer (other-buffer)) (find-file "g:/Private/pa/pa2.lsp") </code></pre> <p>SLIME opens o.k. in the bottom buffer, but the file is opened in one of the background buffers, while I want it to be in front.</p> <p>How to fix this?</p> http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer/188641#188641 0 Answer by Denis Bueno for In Emacs how to switch to other buffer? Denis Bueno 2008-10-09T18:45:07Z 2008-10-09T18:45:07Z <p>Try:</p> <pre><code>(other-window 1) (find-file "g:/Private/pa/pa2.lsp") </code></pre> <p>instead of your last two lines.</p> http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer/261273#261273 1 Answer by Alex Ott for In Emacs how to switch to other buffer? Alex Ott 2008-11-04T08:45:42Z 2008-11-04T08:45:42Z <p>You can look to the function set-window-configuration...</p> <p>But for slime you can use following functions - slime-complete-maybe-save-window-configuration &amp; slime-complete-restore-window-configuration</p> http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer/906559#906559 1 Answer by Török Gábor for In Emacs how to switch to other buffer? Török Gábor 2009-05-25T12:32:55Z 2009-05-25T12:32:55Z <p>Instead of <code>switch-to-buffer</code>, use function <code>pop-to-buffer</code>.</p> <blockquote> <p><code>(pop-to-buffer BUFFER-OR-NAME &amp;optional OTHER-WINDOW NORECORD)</code></p> <p>Select buffer <code>BUFFER-OR-NAME</code> in some window, preferably a different one.</p> </blockquote> http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer/1655455#1655455 0 Answer by Łukasz Lew for In Emacs how to switch to other buffer? Łukasz Lew 2009-10-31T19:58:02Z 2009-10-31T19:58:02Z <p>Try to add</p> <pre><code>(ido-mode 1) </code></pre> <p>to your .emacs, and enjoy the result :)</p>