Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d010a commit 8c4a8deCopy full SHA for 8c4a8de
1 file changed
Misc/python-mode.el
@@ -461,8 +461,9 @@ Currently-active file is at the head of the list.")
461
;; who cares? XEmacs 20 does the right thing with these too).
462
(define-key py-mode-map [delete] 'py-electric-delete)
463
(define-key py-mode-map [backspace] 'py-electric-backspace))
464
- ;; marking interesting locations
465
- (define-key py-mode-map "\e\C-h" 'py-mark-def-or-class)
+ ;; Separate M-BS from C-M-h. The former should remain
+ ;; backward-kill-word.
466
+ (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
467
(define-key py-mode-map "\C-c\C-k" 'py-mark-block)
468
;; Miscellaneous
469
(define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
0 commit comments