fix formatting

This commit is contained in:
nightwing 2013-08-26 21:13:10 +04:00
commit 7fc575a47c

View file

@ -393,7 +393,7 @@ exports.commands = [{
exec: function(editor) { editor.moveLinesDown(); }
}, {
name: "del",
bindKey: bindKey("Delete", "Delete|Ctrl-D"),
bindKey: bindKey("Delete", "Delete|Ctrl-D|Shift-Delete"),
exec: function(editor) { editor.remove("right"); },
multiSelectAction: "forEach"
}, {
@ -406,14 +406,11 @@ exports.commands = [{
multiSelectAction: "forEach"
}, {
name: "cut_or_delete",
bindKey: bindKey(
"Shift-Delete",
"Shift-Delete"
),
bindKey: bindKey("Shift-Delete", null),
exec: function(editor) {
if( editor.selection.isEmpty() ){
if (editor.selection.isEmpty()) {
editor.remove("left");
}else{
} else {
return false;
}
},