比如以下代码,能够识别单引号 / 双引号 / 反引号中的字符串并实现高亮。
cosnt test = {
singleCode: 'const a = 2333; console.log(a, 2333)',
doubleCode: "const b = 2333; console.log(b, 2333)",
templateCode: `const c = 2333; console.log(c, 2333)`
}
export default test
目前没找到很好的插件。想根据 TextMate 重写 TS 的高亮规则,但是又不想影响到其他 TS 文件的高亮规则,只针对某一些文件去做处理。也没有很好的思路。跪求大神!!
1
u3u 2023-09-24 19:20:56 +08:00
|
2
cnobody233 OP @u3u 感谢大佬! 第一个可以满足需求了!
|