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:
parent
6be16de284
commit
bda2562b10
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue