我正在尝试突出显示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所示。
前缀和后缀似乎被忽略
2018.1.1 EAP(终极版)