From 3a6c634f3e9179b6a3f387641844e1e83fe01695 Mon Sep 17 00:00:00 2001 From: abalkin Date: Tue, 17 Feb 2015 22:08:34 -0500 Subject: [PATCH] Update actions.js Added help for select- actions. --- IPython/html/static/notebook/js/actions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPython/html/static/notebook/js/actions.js b/IPython/html/static/notebook/js/actions.js index 75ae0a3e4..7382b8ee3 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();