Sublime Forum

Cursor looks weird

#1

I can’t tell if I just noticed it and that’s the just new cursor in ST4 or something accidently changed?
Refer to the picture below:


It looks larger than normal. Am I seeing things? If not what setting changed and how do I fix it?
Thanks for any help

0 Likes

#2
	// Valid values are "smooth", "phase", "blink" and "solid". Previous
	// versions of Sublime Text used "smooth" by default.
	"caret_style": "solid",
0 Likes

#3

So this is the new default style?
Another capture is below, I thought the height seemed possibly wrong:
sublime2

0 Likes

#4

i don’t know about the height, but for the solid caret, yes.

0 Likes

#5

Yes. The cursor is a bit taller than what it was in ST3. You can always set it back to what it was in ST3 if it’s not to your liking.

ST3 3211 settings for cursor (in default state)

    // Valid values are "smooth", "phase", "blink" and "solid".
    "caret_style": "smooth",

    // These settings control the size of the caret
    "caret_extra_top": 2,
    "caret_extra_bottom": 2,
    "caret_extra_width": 1,

ST4 4113 settings for cursor (in default state)

	// Valid values are "smooth", "phase", "blink" and "solid". Previous
	// versions of Sublime Text used "smooth" by default.
	"caret_style": "solid",

	// These settings control the size of the caret
	"caret_extra_top": 4,
	"caret_extra_bottom": 4,
	"caret_extra_width": 1,
1 Like

#6

Okay thanks

0 Likes