MrMartineau wrote:What exactly does this mean?
- Code: Select all
Open file "Sublime Text 2/Packages/Default/Side Bar.sublime-menu" and comment everything with /* here file contents */
The plugin is installed & working but I think I may be missing something because I have not sone this...
Sublime already comes with the functions: "new", "rename", "delete" and "find" on context menu. These functions are included into this plugin with changes... improving a little bit... In order to hide the defaults you need to open that file and comment everything. If not, there should be two "new file", "rename", "delete".. on your menu right now
Can I also ask about adding apps to the Open with dialog? How do I do it? Here's where I'm at so far:
- Code: Select all
[
{"id": "side-bar-files-open-with",
"children":
[
//application 1
{
"caption": "Photoshop",
"id": "side-bar-files-open-with-photoshop",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "\\Applications\\Adobe CS5\\Adobe Photoshop CS5\\Adobe Photoshop CS5.app",
"extensions":"psd|png|jpg|jpeg|gif" //any file with these extensions
}
},
//separator
{"caption":"Espresso"},
//application 2
{
"caption": "Espresso",
"id": "side-bar-files-open-with-espresso",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "\\Applications\\ Programming\\Espresso.app",
"extensions":"css" //open all even folders
}
},
//application n
{
"caption": "CSS Edit",
"id": "side-bar-files-open-with-css-edit",
"command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "\\Applications\\ Programming\\CSSEdit.app",
"extensions":"css" //any file with extension
}
},
{"caption":"-"}
]
}
]
Are the forward slashes supposed to, now, be two back slashes?
Looks good, but forward slashes is for Windows. I guess.. Mac should be "/Applications/ Programming/CSSEdit.app" I'm not sure.
To add more applications just copy and paste the last entry many times as you want.
//separator
{"caption":"Espresso"},
That's just a separator ------------, should looks like this:
//separator
{"caption":"-"},
Once you made the changes, with time, please, back here to comment if all works good for you, since I don't have a Mac system to test. Thanks
This is one of the few things that ST2 was missing, thank you so much!
You welcome Mr!