How to change caret blinking speed/rate in Sublime Text 3 on Linux Mint 18.1?

Viewed 5302

I am currently using SciTE as a text and code editor and can there adjust the caret blinking rate by specifying in the ".SciTEUser.properties" file

caret.period=350

Now I am evaluating the features of Sublime Text 3 (I am using Linux Mint 18.1 if it does matter) and can't find a way to change the caret blinking rate there.

All what I found out about setting caret properties in Sublime Text 3 is:

// Valid values are "smooth", "phase", "blink" and "solid".
"caret_style":       "phase",
"caret_extra_top":    1,
"caret_extra_bottom": 1,
"caret_extra_width":  7,

but can't find something like caret_blinking_rate or caret_frequency or caret_period.

How can I change the caret blinking rate/speed in Sublime Text 3?

2 Answers
Related