Fix backspace shortcut in codemirror
parent
e3e4186f34
commit
7816c17cb5
|
@ -416,8 +416,12 @@ define([
|
|||
"Backspace": function () {
|
||||
var cursor = doc.getCursor();
|
||||
var line = doc.getLine(cursor.line);
|
||||
if (line.substring(0, cursor.ch).trim() === "") { editor.execCommand("indentLess"); }
|
||||
else { editor.execCommand("delCharBefore"); }
|
||||
var beforeCursor = line.substring(0, cursor.ch);
|
||||
if (beforeCursor && beforeCursor.trim() === "") {
|
||||
editor.execCommand("indentLess");
|
||||
} else {
|
||||
editor.execCommand("delCharBefore");
|
||||
}
|
||||
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue