Merge pull request #620 from ellisonbg/marked-fix

The directionality of the marked keyboard shortcuts was swapped...
pull/622/head
Brian E. Granger 11 years ago
commit 5deceb4a8b

@ -177,14 +177,14 @@ define(function(require){
help: 'extend marked above',
help_index : 'dc',
handler : function (env) {
env.notebook.extend_marked(1);
env.notebook.extend_marked(-1);
}
},
'extend-marked-next' : {
help: 'extend marked below',
help_index : 'dd',
handler : function (env) {
env.notebook.extend_marked(-1);
env.notebook.extend_marked(1);
}
},
'cut-selected-cell' : {

Loading…
Cancel
Save