Created
May 15, 2010 03:15
-
-
Save jmccartie/401975 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Currently an example script (disabled)> Copy as your own script, and modify | |
* the Listener command as shown below | |
* | |
* Menu: Synchronize > Upload Current File On Save | |
* Key: M1+S | |
* Kudos: Ingo Muschenetz | |
* License: EPL 1.0 | |
* Listener: commandService().addExecutionListener(this); | |
* DOM: http://localhost/com.aptana.ide.syncing.doms | |
* DOM: http://download.eclipse.org/technology/dash/update/org.eclipse.eclipsemonkey.lang.javascript | |
*/ | |
// Add * Listener: commandService().addExecutionListener(this); to the top of this file to enable it | |
function main() { | |
sync.uploadCurrentEditor(); | |
} | |
/** | |
* Returns a reference to the workspace command service | |
*/ | |
function commandService() | |
{ | |
var commandServiceClass = Packages.org.eclipse.ui.commands.ICommandService; | |
// same as doing ICommandService.class | |
var commandService = Packages.org.eclipse.ui.PlatformUI.getWorkbench().getAdapter(commandServiceClass); | |
return commandService; | |
} | |
/** | |
* Called before any/every command is executed, so we must filter on command ID | |
*/ | |
function preExecute(commandId, event) {} | |
/* Add in all methods required by the interface, even if they are unused */ | |
function postExecuteSuccess(commandId, returnValue) | |
{ | |
// if we see a save command | |
if (commandId == "org.eclipse.ui.file.save") | |
{ | |
sync.uploadCurrentEditor(); | |
/* Replace above line if you'd like to limit it to just certain projects | |
var fileName = editors.activeEditor.uri; | |
if(fileName.match(/projectName/ig)) | |
{ | |
sync.uploadCurrentEditor(); | |
} | |
*/ | |
} | |
} | |
function notHandled(commandId, exception) {} | |
function postExecuteFailure(commandId, exception) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment