如何设置" elm-format" VSCode中的路径?

时间:2017-05-02 12:49:08

标签: visual-studio-code elm

如何在 VSCode 中设置" elm-format" 路径?

我收到以下错误:

enter image description here

然后我安装了可执行文件:

enter image description here

我现在如何将 VSCode 指向 elm-format.exe 路径,如错误所示?

我是否将其添加到 Elm 语言特定设置下面?

// Place your settings in this file to overwrite the default settings
{
    "window.zoomLevel": 1,
    "files.autoSave": "off",
    "elm.formatOnSave": true,
    "[elm]": {

    }
}

1 个答案:

答案 0 :(得分:1)

榆树格式机制非常简陋,工作原理如下:

1)为您的平台安装elm格式(从github,如您所示)

2)将它添加到您的PATH环境变量(即操作系统的PATH环境变量,无需VS代码等)。这个想法是,如果你打开命令提示符/ shell并输入elm-format,系统应该能够找到它

3)在VS Code中设置elm.formatOnSave(正如您已经完成的那样)

现在,当VS Code保存时,如果您安装了elm扩展,它将调用elm-format命令行实用程序(安装在上面的1中)