首页 > 解决方案 > 在最近的崇高文本更新后光标特别高并且不闪烁

问题描述

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

标签: sublimetextsublimetext4

解决方案


在“设置”窗口的左侧搜索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"

它看起来与ST3非常相似。


推荐阅读