windows下关于sublime text2,HTML/CSS/JS Prettify插件使用路径问题处理
程序员文章站
2023-11-17 12:02:52
windows下关于sublime text2,HTML/CSS/JS Prettify插件使用路径问题处理...
问题在于格式化的时候就提示node.js was not found in the default path.please specify the location.点击确定跳到插件的配置,如下:
"node_path": "/usr/local/bin/",
"format_on_save": false
就去系统里找这个路径,没找着,上网搜了一下知道这个路径是mac os下才有的,windows下的路径应该为:
"node_path": "c:/programfiles/nodejs/node.exe",
"format_on_save": false
改了之后再格式化还是提示没找着路径,最后在*上面看到是因为我的css文件存放路径有中文导致的.
最后,试验了一下,node_path 路径为"/usr/local/bin/" 也没问题.暂时还不清楚nodejs的配置问题.以后清楚了再来补充.