update the evaluate region shortcut in the minor modes to be the same as in the major mode

git-svn-id: https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk@9125 a380766d-ff14-0410-b294-a243070f3f08
This commit is contained in:
Marije Baalman 2009-04-27 16:50:00 +00:00
parent 6be16de284
commit bda2562b10

View file

@ -10,14 +10,14 @@ Non-null prefix argument turns on the mode.
Null prefix argument turns off the mode. Null prefix argument turns off the mode.
When sclang-minor-mode is enabled, you can execute When sclang-minor-mode is enabled, you can execute
sclang code with the normal command C-c C-c and C-c C-x." sclang code with the normal command C-c C-c and C-c C-d."
;; The initial value. ;; The initial value.
nil nil
;; The indicator for the mode line. ;; The indicator for the mode line.
" sclang" " sclang"
;; The minor mode bindings. ;; The minor mode bindings.
'(("\C-c\C-c" . sclang-eval-region-or-line) '(("\C-c\C-c" . sclang-eval-region-or-line)
("\C-c\C-x" . sclang-eval-region) ("\C-c\C-d" . sclang-eval-region)
("\C-\M-x" . sclang-eval-defun) ("\C-\M-x" . sclang-eval-defun)
("\C-c\C-h" . sclang-find-help) ("\C-c\C-h" . sclang-find-help)
("\C-\M-h" . sclang-goto-help-browser) ("\C-\M-h" . sclang-goto-help-browser)
@ -34,14 +34,14 @@ Non-null prefix argument turns on the mode.
Null prefix argument turns off the mode. Null prefix argument turns off the mode.
When sclang-help-minor-mode is enabled, you can execute When sclang-help-minor-mode is enabled, you can execute
sclang code with the normal command C-c C-c and C-c C-x." sclang code with the normal command C-c C-c and C-c C-d."
;; The initial value. ;; The initial value.
nil nil
;; The indicator for the mode line. ;; The indicator for the mode line.
" sclang-help" " sclang-help"
;; The minor mode bindings. ;; The minor mode bindings.
'(("\C-c\C-c" . sclang-eval-region-or-line) '(("\C-c\C-c" . sclang-eval-region-or-line)
("\C-c\C-x" . sclang-eval-region) ("\C-c\C-d" . sclang-eval-region)
("\C-\M-x" . sclang-eval-defun) ("\C-\M-x" . sclang-eval-defun)
("\C-c\C-h" . sclang-find-help) ("\C-c\C-h" . sclang-find-help)
("\C-c\C-s" . sclang-main-stop) ("\C-c\C-s" . sclang-main-stop)