ace编辑器在选择新行后使光标闪烁

时间:2015-02-18 09:07:39

标签: wysiwyg ace-editor

对于已经熟悉ace的人来说,这可能是一个非常简单的问题,但是在我使用

将编辑器移到一个新行之后
editor.gotoLine(row, col);

我如何为光标设置动画(让它像手动选择换行时一样闪烁)?

1 个答案:

答案 0 :(得分:2)

只有编辑器聚焦时,Ace光标才会闪烁。如果要在模糊编辑器上强制闪烁,可以使用私有渲染器。$ cursorLayer对象通过调用

editor.renderer.$cursorLayer.isVisible=true;
editor.renderer.$cursorLayer.restartTimer();

editor.renderer.$cursorLayer.showCursor()