关键字 "this" 的 Atom 样式

Atom styling for keyword "this"

是否可以在您的 Atom 样式表中为关键字 this 提供自定义样式?例如。加粗,这样更显眼?

这可以通过编辑您的 styles.less 文件来实现。

假设您有兴趣将 javascript 中的 this 指定为粗体,以下代码段将处理您的问题:

atom-text-editor::shadow {

    .variable.language.js {
        font-weight: 800;
    }

}

通过打开开发者工具(查看 > 开发者 > 切换开发者工具),点击位于开发工具面板,然后将鼠标悬停在您对样式感兴趣的词上。

有关详细信息,请参阅 here