From 7880ad88b10c04ba424efc4ee45ae010e527fa71 Mon Sep 17 00:00:00 2001 From: Paul Ivanov Date: Fri, 28 Mar 2014 17:20:22 -0700 Subject: [PATCH] ok, removed last few unnecessary shortcuts --- IPython/html/static/notebook/js/quickhelp.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/IPython/html/static/notebook/js/quickhelp.js b/IPython/html/static/notebook/js/quickhelp.js index e28ccfee7..ae5384014 100644 --- a/IPython/html/static/notebook/js/quickhelp.js +++ b/IPython/html/static/notebook/js/quickhelp.js @@ -31,19 +31,17 @@ var IPython = (function (IPython) { // PC specific platform_specific = [ { shortcut: "Ctrl-Home", help:"go to cell start" }, - { shortcut: "Alt-Up", help:"go to cell start" }, + { shortcut: "Ctrl-Up", help:"go to cell start" }, { shortcut: "Ctrl-End", help:"go to cell end" }, { shortcut: "Ctrl-Down", help:"go to cell end" }, { shortcut: "Ctrl-Left", help:"go one word left" }, { shortcut: "Ctrl-Right", help:"go one word right" }, - { shortcut: "Alt-Right", help:"go to cell end" }, { shortcut: "Ctrl-Backspace", help:"del word before" }, { shortcut: "Ctrl-Delete", help:"del word after" }, ]; } var cm_shortcuts = [ - { shortcut:"Insert", help:"toggle overwrite" }, { shortcut:"Tab", help:"code completion or indent" }, { shortcut:"Shift-Tab", help:"tooltip" }, { shortcut: cmd_ctrl + "]", help:"indent" },