Where and how to configure the caret (cursor) blinking? (Blink rate, and possibly width, color.) My environment is Xubuntu. I can globally set that, for example, carets do not blink at all. (Settings/Keyboard/Cursor http://docs.xfce.org/xfce/xfce4-settings/keyboard) But kate does not appear to honor it.
At the moment there is no configuration for that.
For a global configuration, this can be done with the qt5ct or qt6ct programs (if used for Qt themes). We can also add in ~/.config/qt5ct/qt5ct.conf the following lines: ``` [Interface] cursor_flash_time=0 ``` With KDE (~/.config/kdeglobals) the following lines: ``` [KDE] CursorBlinkRate=0 ``` As a last resort, it is possible to write a library that modifies QApplication::cursorFlashTime and load it with LD_PRELOAD when launching kate: https://github.com/igogo/qt5noblink
Considering this ok, we follow the global setting.