##// END OF EJS Templates
shift+enter and ctrl+enter swapped.
Brian E. Granger -
Show More
@@ -91,7 +91,7 var IPython = (function (IPython) {
91 help : 'run cell',
91 help : 'run cell',
92 help_index : 'ba',
92 help_index : 'ba',
93 handler : function (event) {
93 handler : function (event) {
94 IPython.notebook.execute_cell();
94 IPython.notebook.execute_cell_and_select_below();
95 return false;
95 return false;
96 }
96 }
97 },
97 },
@@ -99,7 +99,7 var IPython = (function (IPython) {
99 help : 'run cell, select below',
99 help : 'run cell, select below',
100 help_index : 'bb',
100 help_index : 'bb',
101 handler : function (event) {
101 handler : function (event) {
102 IPython.notebook.execute_cell_and_select_below();
102 IPython.notebook.execute_cell();
103 return false;
103 return false;
104 }
104 }
105 },
105 },
General Comments 0
You need to be logged in to leave comments. Login now