-
From the Helix Docs § [
Which makes perfect sense, since you can only have one cursor, and the other artificial cursors have to take up an entire cell. But, arbitrary text can be underlined, so why is it not possible to use an Similarly with Kakoune, for example, allows changing any cursor to an underline, and it works just fine: Footnotes
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Actually, it seems to already be possible through the theming system: Underline: "ui.cursor.normal" = { modifiers = ["underlined"], underline.color = "your-cursor-color" }
"ui.cursor.insert" = { modifiers = ["underlined"], underline.color = "your-cursor-color" }
"ui.cursor.select" = { modifiers = ["underlined"], underline.color = "your-cursor-color" } (Of course, this does require the coloured underlines extension to be supported by one's terminal emulator.) Hidden: "ui.cursor.normal" = {}
"ui.cursor.insert" = {}
"ui.cursor.select" = {} |
Beta Was this translation helpful? Give feedback.
Actually, it seems to already be possible through the theming system:
Underline:
(Of course, this does require the coloured underlines extension to be supported by one's terminal emulator.)
Hidden: