Eclipse Juno Menu Item missing - eclipse-juno

I have a really weird problem: I cant find the configure item in the popupmenu, if i press in eclipse the right mouse button on a project.
All tuts say that, to make a eclipse project into a mvn project, you have to do so (right mouse button on the existing project and than Configure)
Edit: I have installed the m2e plugin from the marketplace.. unfortunately, there is no -> convert to maven project menu item.. I don't know what to do..
Thanks in advance

Downgraded it to Eclipse Indigo. Everything is fine now. The menu Item is where it should be.

Related

intellij-idea under awesome wm

When using Awesome WM, Intellij main menu is broken.
It's either immediately closing after opening. Holding the mouse button keeps the menu open, but I can't select anything.
Sometimes the menu opening works, but the mouse cursor position is off. The selected item is approxmately one line below my mouse cursor.
I tried the recommended wmname LG3D fix, but it doesn't work.
wmname mutter helps sometimes. If the menu is working, the mouse cursor position is correct.
After some time the menu bugs out still and immediatly closes after clicking.
I think it's weird that I got these problem, as awesome is supposed to be a re-parenting wm now. FWIW, in i3-wm I didn't notice this bug.
Here is a statement from awesome wm and a potential bugfix: http://awesome.naquadah.org/wiki/Problems_with_Java
My development environment is debian wheezy + awesome 3.4 + IntelliJ.
After I ran ./idea.sh and created a new project, IntelliJ showed me a blank page. No menu, no explorers.
I don't know what happened anyway, but I followed THIS and it worked.
SUMMARY
git clone http://git.suckless.org/wmname
sudo apt-get install -y libx11-dev
cd wmname
sudo make clean install
# The next two commands must be run within the same session.
wmname LG3D
./idea.sh
Good luck.
I think I solved my problem with installing JDK6
I'll leave the question for reference

Eclipse Juno navigation of opened tabs with arrows

I've recently upgraded to Juno from Indigo. All it's ok but I can't find how to navigate trough opened tabs with arrows (example image http://imageshack.us/photo/my-images/542/img2ri.jpg/) instead of the list (example image http://imageshack.us/photo/my-images/155/img1nh.jpg/).
Anyone knows how to restore this functionality?
This in reality was a mistake, the arrows to navigate between tabs are provided by the plugin Extended VS Presentation which unfortunately isn't available in Eclipse Juno. I've tried to install it, but the modification does not take effect because the new Eclipse uses a different render engine. :(

How do you get Monodevelop back to using English for its language

I have no idea how it happened, but suddenly when I launch Monodevelop, the menus appear in a language other than English. I have tried reinstalling the application as well as manually removing artifacts in other directories under Library. No luck. After a reinstall, it loads in another language still.
You can change the Language under the options/preferences dialog.
For me the shortcut keystroke is 'command + comma'
Or it is the third menu entry under MonoDevelop menu.
Select the first child entry in the left tree view. "Visual Style"
On the right there are three tabs across the top. Select the first. "General"
The "User Interface Language" setting is the second combo box on that screen.
Change that and click OK at the bottom of the screen. Should be on the right.
Restart MonoDevelop.
Can you please open a bug on https://bugzilla.xamarin.com, including the Version Info from MD's about dialog, and attach your preferences file "~/Library/Preferences/MonoDevelop-2.8/MonoDevelopProperties.xml"?

How do I enable right-click (control-click) context menus in MonoDevelop?

Right Click (or control-click since I'm on a Mac) doesn't bring up the context menus for Solution or Projects.
For instance, in Visual Studio I would right click on a Solution to add a new project to the solution. I've looked all through the menu and can't find the add project command.
Also, how do I add a folder to a project? Again, this would be available from the right-click menu in VS, but I can't find it anywhere in MonoDevelop.
Control-click doesn't do anything for me in any part of MD. Not even in the text editor. Is there a setting to get it to behave the way I'm expecting it to?
Shouldn't these options also be available via the main menu also?
Apparently this was a known issue and has been fixed. It was a bug in the gtk+ library. Single button mice weren't supported.
https://bugzilla.novell.com/show_bug.cgi?id=359734
https://bugzilla.gnome.org/show_bug.cgi?id=346609
Still not sure why I'm seeing this bug now on my OSX 10.6.4 machine running the latest download of MonoDevelop.
Plugging in a 2-button mouse is an adequate work-around. I can right click and get the context menus I was looking for.
These features are where you would expect to find them, exactly where you said. The solution context menu contains Add > Add new project and the project context menu has Add > New folder
I'm on a macbook so I get to use the old double-finger tap, rather than CTRL+Clicking all the time. Not sure why the CTRL+Click is not working for you.
EDIT:
Control-Click anywhere in the solution explorer seems to bring up a context-sensitive context menu. Control-Click whilst solution is selected brings up the solution context menu and if a project is selected, the project context menu.
Control + click doesn't work but a two finger touch brings up the context menus on my Macbook Pro. Check your "Trackpad" settings in system preferences to see how you have secondary click setup on your mac.

IntelliJ navigation

I'm using IntelliJ to do Java Development for an application where we use JSF in a few places. In the .jsp file I have defined my backing class and the code runs properly.
My question is: How do I set up my environment so that when I center click on the method names, which use EL format, IntelliJ navigates to the proper method in the proper class.
Having taken a quick look at my IntelliJ install, if you go to File->Settings, there should be a keymap section under the IDE Settings header. Make a new keymap profile other than default. You can probably just copy the default and give it a new name. In the actions window, open Main Menu->Go To and there should be an action called "Implementation(s)". The description of this action seems to match what you are looking for. Click Add Mouse Shortcut, and center click in the click pad area to set it. I didn't want to actually change my settings, so I didn't finish the steps myself, but this should do what you are wanting to do. It may warn you that you are overwriting a shortcut to another action, so be aware of that.
Hope this helps.
This is using IntelliJ Version 9 beta.
in JSP I am using something like this
<%--#elvariable id="owner" type="com.mysite.data.Owner"--%>
This is a comment specific for intellij I guess. In this way when the owner variable is used anywhere like:
${owner.name}
is known to intellij that is of a Owner type. Intellij then automatically go to the class definition by pressing CTRL+B or middle mouse button.
This is working with intellij idea 9 beta and I remember that this feature was broken in 8.1.1. Prob it is working again in 8.1.x
Probably the same approch will also work for JSF.