[slime-cvs] CVS slime/contrib

CVS User heller heller at common-lisp.net
Wed Jan 7 09:21:45 UTC 2009


Update of /project/slime/cvsroot/slime/contrib
In directory cl-net:/tmp/cvs-serv20781/contrib

Modified Files:
	ChangeLog slime-repl.el 
Log Message:
* slime.el (slime-keys): Remove the binding for C-c C-i. M-TAB
can also be pressed with M-C-i which is probably not taken
by the window manager.  ESC TAB would also work.  Maybe we
should reuse C-c C-i for slime-inspect.
Move C-c C-y to slime-repl.e.
Remove C-c C-f: it's already on C-c C-d f.
Remove C-c M-0: slime-restore-window-configuration doesn't exist.
Remove M-g: slime-quit doesn't work since ages.

* slime-repl.el (slime-mode-map): Bind C-c~ not ~.
Reported by James Wright.
(slime-repl-mode-map): Bind M-TAB.
Remove C-c C-k: compiling the REPL buffer doesn't work anyway.
Remove C-cC-b, C-c:, C-cE, C-cC-d, C-cC-w, C-M-x, C-cC-t, C-cC-l:
those are already bound in slime-parent-map.

--- /project/slime/cvsroot/slime/contrib/ChangeLog	2009/01/04 20:53:06	1.163
+++ /project/slime/cvsroot/slime/contrib/ChangeLog	2009/01/07 09:21:44	1.164
@@ -1,3 +1,12 @@
+2009-01-07  Helmut Eller  <heller at common-lisp.net>
+
+	* slime-repl.el (slime-mode-map): Bind C-c~ not ~.
+	Reported by James Wright.
+	(slime-repl-mode-map): Bind M-TAB.
+	Remove C-c C-k: compiling the REPL buffer doesn't work anyway.
+	Remove C-cC-b, C-c:, C-cE, C-cC-d, C-cC-w, C-M-x, C-cC-t, C-cC-l:
+	those are already bound in slime-parent-map.
+
 2009-01-04  Helmut Eller  <heller at common-lisp.net>
 
 	* slime-repl.el, slime-mrepl.el: Byte-compile the output
--- /project/slime/cvsroot/slime/contrib/slime-repl.el	2009/01/05 21:57:54	1.10
+++ /project/slime/cvsroot/slime/contrib/slime-repl.el	2009/01/07 09:21:44	1.11
@@ -423,7 +423,8 @@
   ("\M-p" 'slime-repl-set-package))
 
 (slime-define-keys slime-mode-map 
-  ("~" 'slime-sync-package-and-default-directory))
+  ("\C-c~" 'slime-sync-package-and-default-directory)
+  ("\C-c\C-y" 'slime-call-defun))
 
 (slime-define-keys slime-connection-list-mode-map
   ((kbd "RET") 'slime-goto-connection)
@@ -443,25 +444,16 @@
   ((kbd "C-<down>") 'slime-repl-forward-input)
   ("\M-r" 'slime-repl-previous-matching-input)
   ("\M-s" 'slime-repl-next-matching-input)
-  ("\C-c\C-b" 'slime-interrupt)
   ("\C-c\C-c" 'slime-interrupt)
-  ("\C-c:"    'slime-interactive-eval)
-  ("\C-c\C-e" 'slime-interactive-eval)
-  ("\C-cE"     'slime-edit-value)
   ;("\t"   'slime-complete-symbol)
   ("\t"   'slime-indent-and-complete-symbol)
+  ("\M-\t" 'slime-complete-symbol)
   (" "    'slime-space)
-  ("\C-c\C-d" slime-doc-map)
-  ("\C-c\C-w" slime-who-map)
-  ("\C-\M-x" 'slime-eval-defun)
   ("\C-c\C-o" 'slime-repl-clear-output)
   ("\C-c\M-o" 'slime-repl-clear-buffer)
-  ("\C-c\C-t" 'slime-toggle-trace-fdefinition)
   ("\C-c\C-u" 'slime-repl-kill-input)
   ("\C-c\C-n" 'slime-repl-next-prompt)
   ("\C-c\C-p" 'slime-repl-previous-prompt)
-  ("\C-c\C-l" 'slime-load-file)
-  ("\C-c\C-k" 'slime-compile-and-load-file)
   ("\C-c\C-z" 'slime-nop))
 
 (def-slime-selector-method ?r





More information about the slime-cvs mailing list