增强Sublime Text Ruby语法突出显示:需要帮助

问题描述

我正在尝试通过添加能够识别带有嵌入式ERB的Heredoc字符串的功能来增强Sublime Text 3中ruby文件的语法突出显示功能。它已经适用于HTML,SQL和其他几种语言:

html embedding in ruby file

在Ruby语法文件中,我找到了与heredoc语言嵌入相关的部分,并为erb创建了一个新的部分:

  heredocs:
    # heredoc with embedded HTML and indented terminator
    - match: '(<<[-~]"?((?:[_\w]+_|)HTML)\b"?)'
      scope: punctuation.definition.string.begin.ruby
      push: [heredoc-html,trailing-heredoc-start]
    # heredoc with embedded ERB and indented terminator
    - match: '(<<[-~]"?((?:[_\w]+_|)ERB)\b"?)'
      scope: punctuation.definition.string.begin.ruby
      push: [heredoc-erb,trailing-heredoc-start]

  heredoc-html:
    - meta_scope: string.unquoted.embedded.html.ruby
    - meta_content_scope: text.html.embedded.ruby
    - match: ^\s*\2$
      scope: punctuation.definition.string.end.ruby
      pop: true
    - include: scope:text.html.basic
    - include: interpolated-ruby
    - include: escaped-char
  
  heredoc-erb:
    - meta_scope: string.unquoted.embedded.html.ruby
    - meta_content_scope: text.html.ruby.embedded.ruby
    - match: ^\s*\2$
      scope: punctuation.definition.string.end.ruby
      pop: true
    - include: scope:text.html.ruby
    - include: interpolated-ruby
    - include: escaped-char

完整语法文件here

通过此修改,ERB嵌入可以工作……

erb

有什么想法可以使我更好地认识结束定界符吗?我猜这一定与我要嵌入的语言有关,因为HTML可以正常工作。

作为旁注,有趣的是,随附的CSS嵌入具有相同的问题:

enter image description here

最后,如果有帮助,这是当光标位于结尾定界符上时我得到的作用域堆栈:

HTML(有效):

source.ruby.custom
string.unquoted.embedded.html.ruby
punctuation.definition.string.end.ruby

ERB(无效):

source.ruby.custom
string.unquoted.embedded.html.ruby
text.html.ruby.embedded.ruby
text.html.basic

CSS(不起作用):

source.ruby.custom
string.unquoted.embedded.css.ruby
text.css.embedded.ruby
meta.rule-set.css.css3
meta.selector-list.css.css3
meta.selector.css.css3
variable.other.tag.css.cs3

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...