1. 程式人生 > >sublime中直接執行html檔案的方法

sublime中直接執行html檔案的方法

1.先下載一個view in browoser外掛


2.看左下角是否successed

3。設定下快捷鍵

 eg: 首選項  按鍵繫結 -使用者-

只需加入下面這行:

{ "keys": ["ctrl+shift+enter"], "command": "open_in_browser" }

我的加完之後是這樣子,因為之前加了一個插入時間的快捷鍵

[
    {
        "command": "add_current_time",
        "keys": [
            "ctrl+shift+."
        ]
    },


    { "keys": ["ctrl+shift+enter"], "command": "open_in_browser" }
]