From 68b61b5e99badcd79a51936ac98715aa47bb2dca Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Fri, 18 May 2012 22:21:34 +0200 Subject: [PATCH] Minor change in ein:notebook-mode-map --- ein-notebook.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ein-notebook.el b/ein-notebook.el index 53690fe..5cb0460 100644 --- a/ein-notebook.el +++ b/ein-notebook.el @@ -876,8 +876,8 @@ NAME is any non-empty string that does not contain '/' or '\\'." (define-key map "\C-c\C-s" 'ein:notebook-split-cell-at-point) (define-key map "\C-c\C-n" 'ein:notebook-goto-next-input-command) (define-key map "\C-c\C-p" 'ein:notebook-goto-prev-input-command) - (define-key map (kbd "\C-c ") 'ein:notebook-move-cell-up-command) - (define-key map (kbd "\C-c ") 'ein:notebook-move-cell-down-command) + (define-key map (kbd "C-c ") 'ein:notebook-move-cell-up-command) + (define-key map (kbd "C-c ") '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-z" 'ein:notebook-kernel-interrupt-command)