fix formatting
This commit is contained in:
parent
5c721c1103
commit
7fc575a47c
1 changed files with 4 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue