We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42df9db commit eb1d40aCopy full SHA for eb1d40a
notebook/static/notebook/js/actions.js
@@ -198,17 +198,15 @@ define(function(require){
198
help_index : 'ee',
199
handler : function (env) {
200
var index = env.notebook.get_selected_index();
201
- env.notebook.cut_cell();
+ env.notebook.cut_selected_cell();
202
env.notebook.select(index);
203
}
204
},
205
'cut-marked-cell' : {
206
icon: 'fa-cut',
207
208
209
- var index = env.notebook.get_selected_index();
210
211
- env.notebook.select(index);
+ env.notebook.cut_marked_cells();
212
213
214
0 commit comments