In Emacs how to switch to other buffer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:40:10Zhttp://stackoverflow.com/feeds/question/188488http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer1In Emacs how to switch to other buffer?avp2008-10-09T18:16:37Z2009-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#1886410Answer by Denis Bueno for In Emacs how to switch to other buffer?Denis Bueno2008-10-09T18:45:07Z2008-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#2612731Answer by Alex Ott for In Emacs how to switch to other buffer?Alex Ott2008-11-04T08:45:42Z2008-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 & slime-complete-restore-window-configuration</p>
http://stackoverflow.com/questions/188488/in-emacs-how-to-switch-to-other-buffer/906559#9065591Answer by Török Gábor for In Emacs how to switch to other buffer?Török Gábor2009-05-25T12:32:55Z2009-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 &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#16554550Answer by Łukasz Lew for In Emacs how to switch to other buffer?Łukasz Lew2009-10-31T19:58:02Z2009-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>