Atom Editor主题更改字符指针的颜色

时间:2015-02-08 10:58:29

标签: css atom-editor

大家好我有2个问题。

  1. 如何更改Atom中字符指针的颜色?
  2. enter image description here

    1. 当我使用find函数时,突出显示所有与我的查询匹配的单词,灰色很难看到......我怎样才能改变颜色?

1 个答案:

答案 0 :(得分:8)

在Atom中有一种非常简单的方法可以做到这一点。导航至styles.less文件>打开样式表。在这个文件的底部,会有这个代码

atom-text-editor::shadow .cursor {

}

这是光标颜色的代码。您可以通过执行

来更改颜色
border-color: //your color here; (yellow stands out well against the darker background)

在括号内。

相关问题