Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Plugin to show Windows Explorer context menu

I am looking for a good plugin showing Windows Explorer context menu directly from editor window in Eclipse. Does anybody know such plugin?

like image 512
ks1322 Avatar asked Jul 20 '11 09:07

ks1322


People also ask

How do I open the context menu in Eclipse?

option is available. or simply you can use shortcut to move: Alt+Shift+V . if it wasn't enabled or doesn't exist, in eclipse go to Window menu, select Customize perspective... a windows with for tabs will appear. select Menu visibility tab then expand Refactor , then tic the Move...

How do I show the Windows context menu?

To open the context menu, right-click (or press and hold) on a file or folder in File Explorer. To find commands from the previous Windows 10 context menu: Right-click (or press and hold) on a file or folder to open the context menu. Select Show more options.

How do I add to Explorer context menu?

You can add favorites to your QAP menu with the Windows Explorer context menus. Right-click or Shift+Right-click on any file or folder to show its context menu. QAP's command in this menu are recognizable by the QAP icon on the left. You can also right-click the Desktop background to show the QAP popup menu!

How do I open Windows Explorer in Eclipse?

To view the project explorer, click on Window menu then, click on Show View and select Project Explorer. There is simpler way to open project explorer, when you are in the editor press alt + shift + w and select project explorer.


2 Answers

I'm a little late to the game with this answer, however since I found this article when trying to find a solution to this i'll post it here. There's an answer over at http://www.eclipsezone.com/eclipse/forums/t77655.html that solves this simply.

under Window -> External Tools -> External Tools Configuration

(1) Create a new Program (select Program in the tree)
(2) name it shell (or whatever you want) (3) set the location to ${env_var:SystemRoot}\explorer.exe
(4) set the arguments to /select,${resource_loc}
(5) run it

for me it appears up in the tool bar at the top in it the little external tool run (run with a toolbox)

simple, effective and doesn't require any installation especially when all i really needed was to have a file focused, and rapidly get to the windows folder that contains it.

like image 55
Beta033 Avatar answered Oct 21 '22 13:10

Beta033


For people who don't want to install Aptana (It's kinda huge), here are a few plugins for a windows context menu in eclipse(and more):

  1. contextmenu
    • Basic
  2. Eclipse Navigator Extension
    • Basic + copy path
  3. StartExplorer
    • Only opens explorer, but also does it on selected text (if it's a path) and has custom commands.

Some more info on Eclipse explorer menu's after trying them:

  1. Failed to install (Some error with osgi)
  2. Has 2 Eclipse context menu's:
    • Copy path (full, file, parent)
    • Show Context Menu (it's the basic version though, some of the context menu items that I can see in real Explorer don't show up here)
  3. Has 1 Eclipse context menu (StartExplorer) with submenu's:
    • Show in File manager
    • Start Shell here
    • Open file with default application
    • Copy resource path to clipboard
    • Custom commands, which you can set in preferences and default ones:
      • Edit in notepad
      • echo to temp file

So, although (3) StartExplorer doesn't really have a context menu and everything sits in a submenu, the custom commands dominates in my opinion. It should allow a contextmenu through it (command to be found) or achieve what you want by cloning the behavior you want from your context menu. It also seems like the code has been updated more recently than the others (and it supports multiple platforms)

like image 45
e-motiv Avatar answered Oct 21 '22 12:10

e-motiv