Sublime Text3—設置快捷鍵打開瀏覽器

在不一樣瀏覽器查看代碼效果可謂是屢見不鮮,因此用不一樣快捷鍵對應打開不一樣瀏覽器能夠大大提升工做效率。html

 本篇分享個簡單的方法只需二步:chrome

 

1、安裝插件SideBarEnhancements瀏覽器

ctrl+shift+P 轉 Package Control: Install Package 搜 SideBarEnhancements 安裝。app

沒裝Package Control?請看:Sublime Text3—軟件安裝、package control插件管理ide

 

 

2、設置快捷鍵post

打開Key Binding | user複製下面代碼,而後修改成你的瀏覽器路徑,重啓軟件。spa

[
    {
        "keys": ["f1"],
        "command": "side_bar_files_open_with",
        "args": {
            "application": "D:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe",
            "extensions": ".*",
            "paths": []
        }
    },
    {
        "keys": ["f2"],
        "command": "side_bar_files_open_with",
        "args": {
            "application": "C:\\Users\\delll\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe",
            "extensions": ".*",
            "paths": []
        }
    },
    {
        "keys": ["f5"],
        "command": "side_bar_files_open_with",
        "args": {
            "application": "C:\\Program Files\\Internet Explorer\\iexplore.exe",
            "extensions": ".*",
            "paths": []
        }
    }
]

 

Tips:firefox

1.f3是查找下一個的快捷鍵,f11是全屏的快捷鍵,設置時當心衝突!詳細快捷鍵介紹請看:Sublime Text—自帶快捷鍵介紹插件

 keys是按鍵,application是瀏覽器程序路徑,extensions是匹配全部的文件後綴格式。3d

 

2.桌面的快捷圖標怎麼看路徑?選中圖標 | 右鍵 | 屬性,反斜槓需轉義把\改成\\。

 

掘金:Sublime Text3—設置快捷鍵打開瀏覽器
簡書:Sublime Text3—設置快捷鍵打開瀏覽器
博客園:Sublime Text3—設置快捷鍵打開瀏覽器

 

 

轉載自:http://www.cnblogs.com/easy-blue/p/5616686.html

相關文章
相關標籤/搜索