Gopls Hightlight Template
Gopls高亮template #
配置 #
{
"gopls": {
"templateExtensions": [
"tpl",
"tmpl",
],
"ui.semanticTokens": true
},
"files.associations": {
"*.tpl": "gotmpl",
"*.tmpl": "gotmpl"
}
// ...
}
当文件扩展名为tpl
, tmpl
时,均会视为是符合Go
的template
文件。
在编辑器里会有变量的高亮和智能提示。