Add keybind: C-c C-r restarts kernel

This commit is contained in:
Takafumi Arakaki 2012-05-22 01:09:33 +02:00
parent 95743a12c8
commit 34745e740b
2 changed files with 2 additions and 0 deletions

View file

@ -145,6 +145,7 @@ Keybinds
C-c C-o ein:notebook-console-open
C-c C-p ein:notebook-goto-prev-input-command
C-c C-q ein:notebook-kernel-kill-command
C-c C-r ein:notebook-restart-kernel-command
C-c C-s ein:notebook-split-cell-at-point
C-c C-t ein:notebook-toggle-cell-type
C-c C-v ein:notebook-set-collapsed-all-command

View file

@ -926,6 +926,7 @@ Examples:
(define-key map (kbd "C-c <down>") 'ein:notebook-move-cell-down-command)
(define-key map "\C-c\C-f" 'ein:notebook-request-tool-tip-or-help-command)
(define-key map "\C-c\C-i" 'ein:notebook-complete-cell-command)
(define-key map "\C-c\C-r" 'ein:notebook-restart-kernel-command)
(define-key map "\C-c\C-z" 'ein:notebook-kernel-interrupt-command)
(define-key map "\C-c\C-q" 'ein:notebook-kernel-kill-command)
(define-key map "\C-c\C-o" 'ein:notebook-console-open)