如何通过editorconfig在sublime text中设置语法高亮

How to set syntax highlighting in sublime text through editorconfig

我的 .editorconfig 文件看起来像这样

root = true

[*.rush]
syntax = ruby

我已将其放在文件夹层次结构的顶部。但是,sublime text 将所有 .rush 文件显示为纯文本,我必须手动将语法突出显示更改为 Ruby.

有人知道怎么做吗?

EditorConfig 尚不支持语法突出显示。

所有编辑器广泛支持的核心支持属性集 -

  • indent_style
  • indent_size
  • tab_width
  • end_of_line
  • charset
  • trim_trailing_whitespace
  • insert_final_newline
  • root

max_line_length 受有限数量的编辑器支持(Emacs、Vim、Atom、ReSharper、Rider、AppCode、IntelliJ IDEA、PhpStorm、PyCharm 、RubyMine 和 WebStorm)

支持突出显示仍然是一个悬而未决的问题 (#190)。

您可以在其 GitHub wiki.

上找到其他建议的属性