Rename execute_cell to execute_marked_cells

This commit is contained in:
Jessica B. Hamrick 2015-10-29 08:33:51 -07:00
parent ac02e2259f
commit f4913bdcd1
2 changed files with 3 additions and 3 deletions

View File

@ -107,10 +107,10 @@ define(function(require){
}
},
'run-cell':{
help : 'run cell',
help : 'run marked cells',
help_index : 'bb',
handler : function (env) {
env.notebook.execute_cell();
env.notebook.execute_marked_cells();
}
},
'run-cell-and-insert-below':{

View File

@ -2001,7 +2001,7 @@ define(function (require) {
/**
* Execute or render cell outputs and go into command mode.
*/
Notebook.prototype.execute_cell = function () {
Notebook.prototype.execute_marked_cells = function () {
this.execute_cells(this.get_marked_indices());
};