ace 编辑器在选择新行后使光标闪烁
ace editor make cursor blink after selecting a new line
对于已经熟悉 ace 的人来说,这可能是一个非常简单的问题,但是在我使用
将编辑器移到新行之后
editor.gotoLine(row, col);
我如何设置光标动画(让它像手动 select 换行时一样闪烁)?
在 Ace 中,光标仅在编辑器获得焦点时才会闪烁。如果你想在模糊编辑器上强制闪烁,你可以通过调用
来使用私有渲染器。$cursorLayer对象
editor.renderer.$cursorLayer.isVisible=true;
editor.renderer.$cursorLayer.restartTimer();
或
editor.renderer.$cursorLayer.showCursor()
对于已经熟悉 ace 的人来说,这可能是一个非常简单的问题,但是在我使用
将编辑器移到新行之后editor.gotoLine(row, col);
我如何设置光标动画(让它像手动 select 换行时一样闪烁)?
在 Ace 中,光标仅在编辑器获得焦点时才会闪烁。如果你想在模糊编辑器上强制闪烁,你可以通过调用
来使用私有渲染器。$cursorLayer对象editor.renderer.$cursorLayer.isVisible=true;
editor.renderer.$cursorLayer.restartTimer();
或
editor.renderer.$cursorLayer.showCursor()