最近 sublime text 更新后光标特别高并且不闪烁

RVR*_*VRX 3 sublimetext sublimetext4

我的光标高度停留在行的最大高度及其填充/边距上,也不再闪烁。截图。我应该查看哪些设置来解决这个问题?

Mat*_*DMo 5

在设置窗口的左侧搜索caret。这应该可以让您进入正确的设置组。我有以下设置:

// 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"
Run Code Online (Sandbox Code Playgroud)

它看起来与 ST3 非常相似。

  • 我认为默认是`0``1``1`和`smooth`。 (2认同)