(py-execute-string): Bind to C-c C-s, and put on menu

This commit is contained in:
Barry Warsaw 1998-05-19 16:15:26 +00:00
parent 751f4931d8
commit 1d0364b2dc
1 changed files with 2 additions and 0 deletions

View File

@ -593,6 +593,7 @@ Currently-active file is at the head of the list.")
;; subprocess commands
(define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
(define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
(define-key py-mode-map "\C-c\C-s" 'py-execute-string)
(define-key py-mode-map "\C-c|" 'py-execute-region)
(define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
(define-key py-mode-map "\C-c!" 'py-shell)
@ -729,6 +730,7 @@ package. Note that the latest X/Emacs releases contain this package.")
["Execute buffer" py-execute-buffer t]
["Execute region" py-execute-region (mark)]
["Execute def or class" py-execute-def-or-class (mark)]
["Execute string" py-execute-string t]
["Start interpreter..." py-shell t]
"-"
["Go to start of block" py-goto-block-up t]