Sublime Forum

Wide, blinking cursor

#1

I’m trying to get the “caret_style” to be wide AND blink. I can’t seem to accomplish both at once.

Here’s the relevant setting section:

// Valid values are “smooth”, “phase”, “blink”, “wide” and “solid”.
“caret_style”: “blink”,

What’s the proper syntax to create a wide, and blinking, cursor? I’ve taken my best guesses, to no avail.

thanks
D

0 Likes

#2

Don’t think that’s possible at the moment. A block cursor would be nice to have, though.

0 Likes

#3

OK, thanks.

0 Likes

#4

This is possible using an undocumented setting called "wide_caret":

"caret_style": "blink", // or phase, etc.
"wide_caret": true

Source: viewtopic.php?f=4&t=3282&start=10#p27182

P.S. Sorry for resurrecting this ancient thread, but I’ve had to google this more than once, so I’m putting this here for posterity :smile:

Alex

0 Likes