diff --git a/IPython/html/static/notebook/js/keyboardmanager.js b/IPython/html/static/notebook/js/keyboardmanager.js index 2a356f2..80fd07d 100644 --- a/IPython/html/static/notebook/js/keyboardmanager.js +++ b/IPython/html/static/notebook/js/keyboardmanager.js @@ -109,14 +109,14 @@ var IPython = (function (IPython) { } }, 'alt+enter' : { - help : 'run cell', + help : 'run cell, insert below', handler : function (event) { IPython.notebook.execute_selected_cell('alt'); return false; } }, 'ctrl+enter' : { - help : 'run cell', + help : 'run cell, select below', handler : function (event) { IPython.notebook.execute_selected_cell('ctrl'); return false;