在视觉工作室代码中形成ejs

时间:2017-12-11 22:08:24

标签: formatting visual-studio-code indentation ejs

嗨,我需要在visual studio中缩进我的ejs代码,但是我收到了这条消息: "抱歉,但没有安装' ejs' -files的格式化程序"

我已经安装了EJS语言支持,但它只是为代码着色,而不是缩进。

有没有人知道如何在Visual Studio代码中执行此操作?

感谢。

2 个答案:

答案 0 :(得分:2)

步骤1

点击文件 >> 首选项 >> 设置 您将得到类似enter image description here

的信息

步骤2

文本框“搜索设置”键入settings.json enter image description here点击Edit in settings.json


将此添加到

下方的settings.json中
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
 //Add this below
"files.assocations": {
        "*.ejs": "html"
    },

重新加载可视代码编辑器,您就很好

答案 1 :(得分:0)

尝试以下链接: FORMATTING “.EJS” FILE IN VS CODE (VISUAL STUDIO CODE)

简而言之,您可能需要将其添加到您的设置中(ctrl / cmd +,):

"files.associations": {
    "*.ejs": "html"
},