My cursor height is stuck at what appears to be the max height of the line and its padding/margin, nor does it blink anymore. Screenshot. What settings should I look at to get this sorted out?
Asked
Active
Viewed 2,316 times
1 Answers
21
Search in the left side of the Settings window for caret
. That should get you to the right group of settings. I have the following set:
// These settings control the size of the caret
"caret_extra_bottom": 0,
"caret_extra_top": 0,
"caret_extra_width": 0,
// Valid values are "smooth", "phase", "blink" and "solid". Previous
// versions of Sublime Text used "smooth" by default.
"caret_style": "smooth"
and it looks pretty similar to ST3.

MattDMo
- 100,794
- 21
- 241
- 231
-
1The defaults for ST3 are `2` and `2` for the extra top/bottom, but both are `4` in ST~~4~~ to make the cursor more visible with `caret_style` changing to `solid`; this is of course down to personal preference. – OdatNurd Jun 10 '21 at 20:32
-
1I think default was `0` `1` `1` and `smooth`. – Artem P Aug 08 '21 at 22:31