Skip to content

Instantly share code, notes, and snippets.

@JonathanBeech
Created August 17, 2012 06:40
Show Gist options
  • Save JonathanBeech/3376533 to your computer and use it in GitHub Desktop.
Save JonathanBeech/3376533 to your computer and use it in GitHub Desktop.
Sublime Text: sidebar enhancement settings
[
{"id": "side-bar-files-open-with",
"children":
[
// Espresso
{
"caption": "Espresso",
"id": "side-bar-files-open-with-espresso",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Espresso.app",
"extensions":"css|html" //open all even folders
}
},
// CSS Edit
{
"caption": "CSS Edit",
"id": "side-bar-files-open-with-cssedit",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "CSSEdit.app",
"extensions":"css" //any file with extension
}
},
{"caption":"-"},
// Browsers
{
"caption": "Chrome",
"id": "side-bar-files-open-with-chrome",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Google Chrome.app",
"extensions":"html|php" //any file with these extensions
}
},
{
"caption": "Firefox",
"id": "side-bar-files-open-with-firefox",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Firefox.app",
"extensions":"html|php" //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": "Adobe Photoshop CS5.app",
"extensions":"psd|png|jpg|jpeg|gif" //any file with these extensions
}
},
// Preview
{
"caption": "Preview",
"id": "side-bar-files-open-with-preview",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Preview.app",
"extensions":"psd|png|jpg|jpeg|gif" //any file with these extensions
}
},
{"caption":"-"},
// Textmate
{
"caption": "Textmate",
"id": "side-bar-files-open-with-textmate",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Textmate.app",
"extensions":"html|php|js" //any file with these extensions
}
},
// Coda
{
"caption": "Coda",
"id": "side-bar-files-open-with-coda",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "Coda.app",
"extensions":"html|php|js" //any file with these extensions
}
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment