使用IntelliJ的参数的前缀和后缀

时间:2018-04-17 19:39:55

标签: intellij-idea kotlin

问题

我正在尝试突出显示CSS颜色,并建议好像我在IntelliJ IDEA中编辑CSS文件。

import org.intellij.lang.annotations.Language

fun x() {
    c("red")
}

fun c(
    @Language(
            value  = "CSS",
            prefix = "*{background:",
            suffix = "}")
    text: String): String = text

如果我手动添加后缀和前缀如下:

c("*{background: red}")

然后我得到了预期的突出显示和建议。

预期结果

我希望将参数视为具有前缀前缀和后缀后缀,如the docs所示。

实际结果

前缀和后缀似乎被忽略

IDEA版本

2018.1.1 EAP(终极版)

0 个答案:

没有答案