Skip to main content
summaryrefslogtreecommitdiffstats
blob: c745ded014cdf71ef168b6a1090aa5ab537c6279 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2014 Christian Pontesegger and others. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors         : Christian Pontesegger - initial API and implementation
 * name                 : Explore from here
 * image				: platform:/plugin/org.eclipse.ease.ui/icons/eobj16/folder.png
 * toolbar				: Project Explorer
 * popup				: enableFor(org.eclipse.core.resources.IResource)
 * script-type          : JavaScript
 * description          : Start a file browser using current selection.
 ******************************************************************************/

loadModule('/System/Platform');
loadModule('/System/UI');

var selection = getSelection();
if (selection instanceof org.eclipse.jface.viewers.IStructuredSelection)
	selection = selection.getFirstElement();

if (selection instanceof org.eclipse.core.resources.IFile)
	selection = selection.getParent();

if (selection instanceof org.eclipse.core.resources.IContainer)
	// runProcess("/usr/bin/krusader", ["--left", getSystemProperty("user.home"), "--right", selection.getRawLocation()]);
	runProcess("explorer.exe", [ selection.getRawLocation() ]);

Back to the top