From 1535a01435e0048568571564e9663f7182e4901b 2014-03-29 00:20:22 From: Paul Ivanov Date: 2014-03-29 00:20:22 Subject: [PATCH] ok, removed last few unnecessary shortcuts --- diff --git a/IPython/html/static/notebook/js/quickhelp.js b/IPython/html/static/notebook/js/quickhelp.js index e28ccfe..ae53840 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" },