Re: Quick slime/emacs questions

2009-03-30 Thread Mark Engelberg
I have CUA mode enabled, and it does most of those remappings, but not the C-s for save. I know searching is common, which is why I plan to remap C-f to search. Don't need existing binding for C-f since the arrow keys work just fine for moving around. I don't mind the normal Emacs bindings, exc

Re: Quick slime/emacs questions

2009-03-29 Thread Tassilo Horn
Mark Engelberg writes: Hi Mark, > Also, where can I look up the names of various commands to rebind to > different keys? For example, I want to remap C-s to do what C-x-C-s > currently does, and I wan to remap C-f to do what C-s currently does, > to make behavior more consistent with other pro

Re: Quick slime/emacs questions

2009-03-29 Thread Mark Triggs
Something like this in your ~/.emacs might do the job: (define-key global-map (kbd "C-x C-b") (lambda () (interactive) (select-window (call-interactively 'list-buffers Cheers, Mark On Mar 30, 7:41 am, Mark Engelberg wrote: > When I have two windows open, and hit C-x-C-b, it

Re: Quick slime/emacs questions

2009-03-29 Thread Victor Rodriguez
On Sun, Mar 29, 2009 at 4:41 PM, Mark Engelberg wrote: > > When I have two windows open, and hit C-x-C-b, it pops up a list of > buffers in the OTHER window from where the current focus is.  Any idea > why it's doing that, and how I can alter the behavior so it pops up > the list of buffers in th

Re: Quick slime/emacs questions

2009-03-29 Thread Stuart Halloway
describe-key (usually C-h k) followed by a key will tell you what a key is currently bound to. On my setup C-x C-b is bound to ido-switch-buffer--it is not immediately obvious how to make it pop the buffer list in the current window. You might find "What You Can Learn From ido.el" (http://

Quick slime/emacs questions

2009-03-29 Thread Mark Engelberg
When I have two windows open, and hit C-x-C-b, it pops up a list of buffers in the OTHER window from where the current focus is. Any idea why it's doing that, and how I can alter the behavior so it pops up the list of buffers in the current window? Also, where can I look up the names of various