您所指的项目是插入符号。
caret
颜色由配色方案中的 caret 全局颜色 和全局首选项中的 caret
设置控制。
要修改颜色,您可以:
UI: Customize Color Scheme
caret
键添加到 globals
部分并指定颜色(如下例所示)。例如,您可以使文件看起来像这样(假设您没有其他配色方案自定义):
// Documentation at https://www.sublimetext.com/docs/color_schemes.html
{
"variables":
{
},
"globals":
{
"caret": "magenta",
},
"rules":
[
]
}
这将使插入符号变成洋红色。请参阅配色方案文档了解指定颜色的各种方法。
控制插入符号大小和形状的首选项如下(直接取自默认首选项文件),并显示其默认值。使用
Preferences > Settings
并将要修改的设置添加到右侧窗格,就像其他设置一样(您也可以使它们特定于语法)。
// 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,
// When enabled, the caret will be drawn as a rectangle, using the width
// of the current character
"block_caret": false,