尾随反斜杠错误Web模式内容类型

时间:2018-09-18 06:14:36

标签: debugging emacs

尝试在网络模式下设置内容类型时出现此错误:@pipeline.parameters.parameterName

我很难调试一下。我是emacs的新手,因此需要一些帮助来设置Web模式。我一直在关注web-mode.org中的文档,但是很难解密。谢谢。

File mode specification error: (invalid-regexp Trailing backslash)

1 个答案:

答案 0 :(得分:1)

:mode之后的正则表达式列表中,确保它们都以\\'结尾。目前有两个人这样做,但其中四个人失去了最后的'字符。

 :mode ("\\.html?\\'"
        "\\.hbs$\\'"
        "\\.vue$\\'"
        "\\.css?\\'"
        "components/.*\\.js[x]?\\'"
        "containers/.*\\.js[x]?\\'")

\'是一种特殊的regexp构造,它“匹配空字符串,但仅在缓冲区或与之匹配的字符串的末尾匹配”。