Skip to content

Instantly share code, notes, and snippets.

@demun
Created February 5, 2014 04:28
Show Gist options
  • Save demun/8817428 to your computer and use it in GitHub Desktop.
Save demun/8817428 to your computer and use it in GitHub Desktop.
sublime text SideBarEnhancements
[{
"id": "side-bar-files-open-with",
"children": [
// Chrome
{
"caption": "Chrome",
"id": "side-bar-files-open-with-chrome",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Google\\Chrome\\Application/chrome.exe", // Chrome
"extensions": "html|.*" //any file with these extensions
}
},
// Internet Explorer
{
"caption": "Internet Explorer",
"id": "side-bar-files-open-with-iexplore",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Internet Explorer\\iexplore.exe", // Internet Explorer
"extensions": "html|.*" //any file with these extensions
}
},
{
"caption": "-"
}
// Photoshop
{
"caption": "Photoshop",
"id": "side-bar-files-open-with-photoshop",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Adobe\\Adobe Photoshop CC (64 Bit)\\Photoshop.exe", // install path
"extensions": "psd|png|jpg|jpeg" //any file with these extensions
}
},
// Honeyview
{
"caption": "Honeyview",
"id": "side-bar-files-open-with-Honeyview",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C:\\Program Files\\Honeyview\\Honeyview.exe", // install path
"extensions": "psd|png|jpg|jpeg" //any file with these extensions
}
}
]
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment