当我在 sublime-text 中保存时运行 shell 命令

当我在 sublime-text 中保存时运行 shell 命令

我正在用 html 编码,每次我都必须保存文件并运行命令行

$ google-chrome fileLoacation.html

我可以让 subl 自动执行此操作吗?

答案1

指定 HTML 的构建系统:

{
    "cmd": ["google-chrome", "$file"],
    "selector": "text.html"
}

并安装SublimeOnSaveBuild包裹。

相关内容