-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C-c C-z #633
Comments
I have a similar workflow, using C-c C-z to switch to the repl window. |
A few weeks ago, I searched around for how to "pin" the repl to the window, but I couldn't find anything. How do you manage that? And, what happens to the various buffers that try to replace the repl? |
Not sure. The only buffers that popup (for me) are sly-compilation, some Magit stuff, and manually triggered Embark or so. |
I just switched from slime to sly. One of the really useful things I only recently discovered in slime was
C-c C-z
. I typically have emacs setup with two "windows" on top of each other: one displaying a .lisp file and another window below that with the slime repl:As typically happens, some other buffer will replace the slime repl in the lower window, and before I discovered
C-c C-z
, I would switch to the lower window,C-x o
, then change buffers withC-x b
and type in:slime-r <Tab><Ret>
, which was a complete pain! That whole process was replaced by merely typingC-c C-z
in the upper window containing my .lisp file, which would open the buffer with the slime repl in the lower window and switch the cursor to the slime repl. Wow!In sly, things work slightly different. If the sly repl is already open in the lower window, then typing
C-c C-z
in the upper window will switch to the lower window--similar toC-x o
. However, if another buffer is open in the lower window, thenC-c C-z
will cause my .lisp file in the upper window to disappear and be replaced by the sly repl. I don't want that to happen! For me, the whole beauty ofC-c C-z
was opening the repl in the lower window and switching to that window--no matter what buffer was open in the lower window. Can I get that same behavior in sly?The text was updated successfully, but these errors were encountered: