在我的情况下,光标跳过一条空行。如何解决?预先感谢。
在Angular 5 +电子中。
html:
whatever_module
ts:
<codemirror
[config]="{
lineWrapping: true,
autofocus: true,
showCursorWhenSelecting: true,
smartIndent: false
}"
(keyup.enter)="removeIndentation()"
#novelEditor>
</codemirror>
答案 0 :(得分:0)
我解决了
removeIndentation() {
const cm = this.novelEditor.instance;
cm.execCommand('delLineLeft');
}