sublime 自定義快捷鍵 功能增強

[    
    // 跳出 引號 括號
    { "keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
        [
            { "key": "following_text", "operator": "regex_contains", "operand": "^[)\\]\\>\\'\\\"]", "match_all": true },
        ]   
      },
      //調色板
    { "keys": ["ctrl+shift+q"], "command": "color_pick" },
    //滑動側邊欄
    { "keys": ["ctrl+b"], "command": "toggle_side_bar" },
     { "keys": ["ctrl+alt+shift+p"], "command": "autoprefixer" },
     //跳轉到行尾部
    { "keys": ["alt+;"], "command": "run_macro_file", "args": {"file":"Packages/User/command.sublime-macro"} },
    

    // firefox
    {
        "keys": ["f1"], "command": "side_bar_files_open_with",
        "args": {
                    "paths": [],
                    "application": "D:/Program Files/FirefoxPortable64/FirefoxLoader.exe",
                    "extensions":".*"
                }
    },


     //  chrome
    {
        "keys": ["f2"], "command": "side_bar_files_open_with",
         "args":{
                     "paths": [],
                 //    "application": "C:/Program Files/SogouExplorer/SogouExplorer.exe",
                     "application": "D:/Program Files/Google Chrome v47.0.2526.106 Enhance_64bit/MyChrome.exe",
                     "extensions":".*"
                 }
    },

    // ie
    {
        "keys": ["f3"],
        "command": "side_bar_files_open_with",
        "args": { "paths": [],
        "application": "C:/Program Files/Internet Explorer/iexplore.exe",
        "extensions":".*"
        }
    },
    //other
    {
        "keys": ["f4"],
        "command": "side_bar_files_open_with",
        "args": { "paths": [],
        "application": "C:/Program Files (x86)/SogouExplorer/SogouExplorer.exe",
        "extensions":".*"
        }
    }

]

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章