Skip to content

Instantly share code, notes, and snippets.

@yedanbo
Created March 4, 2016 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yedanbo/51653970697892b36aa4 to your computer and use it in GitHub Desktop.
Save yedanbo/51653970697892b36aa4 to your computer and use it in GitHub Desktop.
Sublime Text 用户自定义快捷键配置文件(JSON)
[
// SidebarEnhancement
// Chrome
{ "keys": ["f12"],
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe",
"extensions":".*"
}
},
// Terminal
{
"keys": ["ctrl+alt+t"],
"command": "open_terminal",
"args": {
// "parameters": ["-T", "Custom Window Title"]
"parameters": ["-T", "Working in directory %CWD%"]
}
},
// SidebarFolder
{
"keys": ["ctrl+shift+o"],
"command": "side_bar_folders_quick_switch"
},
// Trailing Space
{
"keys": ["ctrl+delete"],
"command": "delete_trailing_spaces",
},
// CSScomb
{
"keys": ["ctrl+shift+c"],
"command": "css_comb"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment