对于已经熟悉ace的人来说,这可能是一个非常简单的问题,但是在我使用
将编辑器移到一个新行之后editor.gotoLine(row, col);
我如何为光标设置动画(让它像手动选择换行时一样闪烁)?
答案 0 :(得分:2)
只有编辑器聚焦时,Ace光标才会闪烁。如果要在模糊编辑器上强制闪烁,可以使用私有渲染器。$ cursorLayer对象通过调用
editor.renderer.$cursorLayer.isVisible=true;
editor.renderer.$cursorLayer.restartTimer();
或
editor.renderer.$cursorLayer.showCursor()