如何在GoLand或PyCharm IDE中打开与html文件相同的.tmpl文件?

问题描述 投票:0回答:3

我正在使用 GoLand IDE。当我打开 HTML 文件时,我可以在文件内容中看到不同的颜色,但是当我打开

.tmpl
文件中使用的
Go-Template
文件时,我无法像 HTML 文件一样检查它,但是当我更改其后缀为
.html
而不是
.tmpl
它会发生。

那么,如何在 GoLand IDE 中打开与 HTML 文件相同的

.tmpl
(
Go-Template
) 文件?

另外,我尝试使用 PyCharm IDE,但结果是相同的。

html pycharm jetbrains-ide go-templates goland
3个回答
15
投票

您可以将

*.tmpl
添加到在 设置 | 中为 HTML 文件类型注册的模式列表中。编辑|文件类型


1
投票

在 VSCode 中:

前往

Settings
->
textEditor
->
files
->
add items

然后定义 *.tmpl 为键,html 为值

*.tmpl : html


0
投票

您可以在 Goland IDE 中使用

.gohtml
扩展代替
.tmpl

© www.soinside.com 2019 - 2024. All rights reserved.