Hi, On Wed, Dec 24, 2008 at 8:47 AM, kogu <grees...@gmail.com> wrote: > This is not clojure related but Slime/Emacs related. > > I am using Slime/Emacs/Clojure Mode/Swank Clojure on Windows. > > I have a dual monitor setup. So I create a new frame, move that to the > second monitor, and set that to the REPL buffer. This allows me to > work quickly, without switching to various buffers all the time. It > works perfectly under inferior-lisp mode. Code in one display, REPL on > the other. > > I have problem with Slime though. In slime, when I run a function in > the main window, the window is split in half with code and REPL > showing in the same display. The other frame, on the second monitor > works fine and updates. > > I want to stop this behavior of automatically splitting the window. > The REPL on the other frame updates, so that's not a problem. So when > I run a function (C-M-x), I don't want the window to split. > > I have set "pop-up-windows" to nil. Now the window doesn't split, but > the buffer still switches to the REPL buffer. I want this automatic > switching to stop. Can anyone help?
Does adding the following to your .emacs file fix this for you?: (add-hook 'slime-connected-hook (lambda () ;; do any other post-slime-startup stuff here (bury-buffer))) -- Bill Clementson --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---