首页 > 代码库 > 如何在sublime text上快速访问html页面?

如何在sublime text上快速访问html页面?

第一步。
Preferences—Key Bindings—User.
第二部,将以下代码插入。

//chorme
     {
        "keys": ["f2"],
        "command": "side_bar_files_open_with",
        "args": {
            "paths": [],
            "application": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
            "extensions": ".*"
        }
    }

  

其中“keys”是指定快捷键,替换成自己想要的。
application是你浏览器在电脑上的目录地址,替换了就OK了。注意是双斜杠\\。
第三步,保存。

如何在sublime text上快速访问html页面?