Is there a way I can turn off the blinking cursor when editing?
After some poking around, I was able to partially hack this in by editing the following obfuscated javascript file /Applications/Quiver.app/Contents/Resources/html-build/js/editor.js.
I inserted this.editor.renderer.$cursorLayer.setBlinking(false); after every occurence of this.editor=ace.edit(e[0]);
This patch disabled the blinking cursor in the markdown, latex, and code cells. The text and diagram cells remain unaffected.
Is there a way I can turn off the blinking cursor when editing?
After some poking around, I was able to partially hack this in by editing the following obfuscated javascript file
/Applications/Quiver.app/Contents/Resources/html-build/js/editor.js
.I inserted
this.editor.renderer.$cursorLayer.setBlinking(false);
after every occurence ofthis.editor=ace.edit(e[0]);
This patch disabled the blinking cursor in the markdown, latex, and code cells. The text and diagram cells remain unaffected.