eclipse how to show package explorer in debug perspective - eclipse

The package explorer in eclipse only shows up on the Java tab (perspective) but i would like to show it in debug mode also. is there a way to do that? i can't find it in Windows->Show view in debug mode but it is there in java mode (actually, that's project explorer but it looks like the same thing)

You can open it by selecting Window / Show view / Other... / Java / Package Explorer.

Related

Right-click menu not showing in Selenium IDE

On this Selenium documentation page, it says "You can export either a test or suite of tests to WebDriver code by right-clicking on a test or a suite...", but when I right-click, I just get the web browser's right-click menu instead of Selenium-IDE's menu:
I have found that quitting Firefox and starting it again will give me the proper right-click menu, but wondered what I was doing to cause it, and if the developers know about this.
Firefox 71.0 (64-bit) on Windows 7
Selenuim IDE Version 3.16.1
This is because you are trying to export test from different tabs. 'Executing' tab is opened on your screen, but 'Tests' tab is opened on documentation screenshot .
About restarting Selenium IDE: 'Tests' tab opens as a main window after restart, so exporting is available there. When you start running tests in Selenium IDE 'Executing' tab automatically opens and exporting is not available. You should change tab by clicking on the tingle near tab name and select 'Tests' tab where you can export your test.
If you think that this is not correct behavior you should create issue here

Show package explorer in PyDev Debug perspective

How do I show the package explorer in PyDev debug view?
The way it is now, the package explorer disappears when the view switches. This then shifts the editor left; Super annoying.
I have tried window > show view > other > pydev >...
There are some choices:
You can use Alt+Shift+W then select PyDev Package explorer (this will also select the file for the current editor in the PyDev Package explorer) -- this is the one I usually use as it's also useful to select the current file.
Use Ctrl+3 then type PyDev Package explorer (you probably won't have to type it all, just a part of it).
Use the menu Window > Show View > other > PyDev > PyDev Package Explorer.

In IntelliJ is there any package/class browser like Eclipse's Java Browsing perspective?

Being a long-time Eclipse power user, I'm totally addicted to the Smalltalk-style package and class browser it presents in the Java Browsing perspective. Is there anything similar for IntelliJ?
Note: I'm not looking for IntelliJ's Project window; that's more like Eclipse's Package Explorer or Project Explorer.
You can achieve something similar with opening these tool windows:
Structure (View > Tool Windows > Structure);
Type Hierarchy (Navigate > Type Hierarchy)
Project, but choose its "Packages" view
Favorites, and add the whole project as a favorite (either with drag and drop or via right-clicking it)
Then you can rearange the windows to match your preference - see attached screenshot.

How to open Pydev Package Explorer

so I guess this quest is kind of stupid, but I am completely new to eclipse and pydev. I recently switched from using SPE. So I closed the Pydev Package explorer, how do I open it again? I am using LiClipse 0.9.7. Thanks in advance
I don't see what you see, but try...
Window | Show View | Other... | Pydev Package Explorer
#Grzegorz Oledzki is right, but I wanted to add some more info:
If you're in the PyDev perspective (window > open perspective > pydev), you can use Shift+Alt+W when you're inside any editor and then select to show that editor in the pydev package explorer (this also works to show in other places such as the outline and it's very handy to go from the editor to the pydev package explorer).
Also, in the latest version (3.3.3), you can use Ctrl+3 and then write 'pydev package explorer' to go to it (actually, it'll show much earlier to select and that can be used to go to any view or preferences page or even to activate some menu).
Note: this would also work on earlier versions if the Ctrl+3 binding that did a comment in the PyDev editor was removed (to let the default Ctrl+3 from Eclipse do its work).

pydev plugin in eclipse not showing the files in the project explorer

I am using pydev plugin in eclipse. I can create the project, but I cannot see the files in the project explorer.
I am attaching the screenshot. Any idea how to fix it.
Thanks
Kiran
in Pydev explorer Ctrl+F10 then from Top Level Elements choose Projects. It will show the projects in your workspace
I got a little workaround. I'm not sure what the difference between "PyDev Package Explorer" and "Package Explorer" is supposed to be, but it's clear that one of them is buggy.
I'm well aware that this is from 2011, but I came across this question while searching for it. I hope my answer will help someone.
Ensure you are in the "PyDev" perspective.
Top menu bar > Window > Customize Perspective...
Menu Visibility tab
Under "Edit", tick the "Show views" box (it might be half-ticked somehow depending on how your OS displays that). Press OK.
Top menu bar > Window > Show view > Package Explorer
A new 'view' should now be visible, called "Package Explorer". Move Package Explorer to an appropriate space (click and drag).
Delete the old "PyDev Package Explorer".
It seems that Eclipse does not have the resources up to date...
Have you configured Eclipse to do automatic refresh of resources?
Preferences > General > Startup and Shutdown: check 'Refresh workspace on startup'
Preferences > Workspace: check: Refresh automatically (this depends on your Eclipse version -- in 3.7 the settings were changed a bit, but it should be easy to know which configurations are related).
You can also try making a manual refresh: either F5 or right-click: refresh.
Another thing to check is if the path of the project is actually the path you're expecting (i.e.: the path that has the resources) -- you can press Alt+Enter to open the properties for the project and check if the location is actually correct.