From 32414b789b82c3a6ff1063010c6c6f5264c1ec90 2015-02-18 04:06:00 From: Kyle Kelley Date: 2015-02-18 04:06:00 Subject: [PATCH] Merge pull request #7811 from abalkin/patch-2 Update actions.js --- diff --git a/IPython/html/static/notebook/js/actions.js b/IPython/html/static/notebook/js/actions.js index c25cc32..828b724 100644 --- a/IPython/html/static/notebook/js/actions.js +++ b/IPython/html/static/notebook/js/actions.js @@ -79,6 +79,7 @@ define(function(require){ } }, 'select-previous-cell' : { + help: 'select cell above', help_index : 'da', handler : function (env) { var index = env.notebook.get_selected_index(); @@ -89,6 +90,7 @@ define(function(require){ } }, 'select-next-cell' : { + help: 'select cell below', help_index : 'db', handler : function (env) { var index = env.notebook.get_selected_index();