I use vim keybindings in Komodo, and the cursor never stops flashing even when moving the position with direction key pressed down (key repeat) resulting in about a second of invisible cursor while it is moving quickly and me having no idea where it is.
In the past, the solution was to run a userscript whenever a file is opened for editing that would disable the cursor blinking:
if (ko.views.manager.currentView && ko.views.manager.currentView.getAttribute(“type”) == “editor”) {
ko.views.manager.currentView.scimoz.caretPeriod = 0;
}
The problem is that this script works too well now! The cursor stops blinking correctly, by staying off entirely!
Does anybody know how to resolve this in Komodo Edit 10.1 ?