diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-01-11 14:45:48 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-01-11 14:45:48 +0100 |
commit | 0fac0de329fb7c775f123f6bef74e999de89a529 (patch) | |
tree | b43565bee8c7104b064645f3c9453c225450f77a | |
parent | a11b28612594d1830ae3939c9be65cbe7f00b949 (diff) | |
download | geiser-guile-0fac0de329fb7c775f123f6bef74e999de89a529.tar.gz geiser-guile-0fac0de329fb7c775f123f6bef74e999de89a529.tar.bz2 |
C-c C-Z -> C-c C-a
Since C-c C-z/Z apparently conflict with each other, and the new
keybinding is more friendly anyway.
-rw-r--r-- | doc/parens.texi | 2 | ||||
-rw-r--r-- | elisp/geiser-mode.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/parens.texi b/doc/parens.texi index 18026bc..f7018d3 100644 --- a/doc/parens.texi +++ b/doc/parens.texi @@ -211,7 +211,7 @@ teleported to the REPL, the latter will switch to the namespace of the Scheme source file (as if you had used @kbd{C-c C-m} in the REPL, with the source file's module as argument; cf. discussion in @altr{Switching context,,Switching context,).}This command is also -bound to @kbd{C-c C-Z}, with a capital zed. +bound to @kbd{C-c C-a}. Once you're in the REPL, the same @kbd{C-c C-z} shortcut will bring you back to the buffer you jumped from, provided you don't kill the diff --git a/elisp/geiser-mode.el b/elisp/geiser-mode.el index 2f1f2e7..a28fad5 100644 --- a/elisp/geiser-mode.el +++ b/elisp/geiser-mode.el @@ -291,7 +291,7 @@ interacting with the Geiser REPL is at your disposal. -- ("Compile buffer" "\C-c\C-k" geiser-compile-current-buffer) ("Switch to REPL" "\C-c\C-z" geiser-mode-switch-to-repl) - ("Switch to REPL and enter module" "\C-c\C-Z" + ("Switch to REPL and enter module" "\C-c\C-a" geiser-mode-switch-to-repl-and-enter) ("Set Scheme..." "\C-c\C-s" geiser-set-scheme) -- |