如何在Codemirror中删除新行上的缩进

时间:2019-01-15 13:32:35

标签: javascript angular electron codemirror

在我的情况下,光标跳过一条空行。如何解决?预先感谢。

在Angular 5 +电子中。

html:

whatever_module

ts:

   <codemirror
     [config]="{
       lineWrapping: true, 
       autofocus: true, 
       showCursorWhenSelecting: true,
       smartIndent: false
     }"
     (keyup.enter)="removeIndentation()"
     #novelEditor>
   </codemirror>

enter image description here

1 个答案:

答案 0 :(得分:0)

我解决了

removeIndentation() {
   const cm = this.novelEditor.instance;
   cm.execCommand('delLineLeft');
}