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
[quote]
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:
{"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?
[/quote]
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.
That's just a separator ------------, should looks like this:
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
You welcome Mr!