Disable structure view of PhpStorm - ide

I am looking for how to deactivate the structure view of PhpStorm and remove the dropdown.
What I want to disable:

You need to disable "Show Members" option.
Either right click on the "Project" tool window header or click on the Cog icon
Ensure that "Tree Appearance | Show members" is unchecked.

Related

"Go to implementation" keymap works for a different purpose when internal actions is on

In order to narrow line height for project view, I enable internal actions. However default go to implementation keymap "Ctrl+Alt+Click" opens an Intellij editor implementation class property popup.
Popup example
Since I'm used to this keymap for "Go to implementation" I want to keep it. But I couldn't find a way to disable other behavior.
How can I disable it? Or is there a way to change keymap for it?
You can remove a shortcut in the settings.
Navigate to File | Settings | Keymap Main Menu | Tools | Internal Actions | UI | UI Inspector, right-click on the item and select Remove Ctrl+Alt+Click.

Intellij how to add call hierarchy to mouse popup menu?

Is there a way to add Call Hierarchy to mouse popup menu in Intellij? I use it a lot and hope it is available on the mouse right click popup menu.
This works on Intellij IDEA Ultimate 2018.1.3:
From the File menu select Settings...
In the left panel select Appearance & Behavior > Menus and Toolbars.
In the right panel expand the Editor Popup Menu entry.
Select the final entry of that menu, which (for me) was JSP Actions.
Some buttons on the right should now be enabled. Click the Add After... button:
The Choose Actions To Add dialog opens. Navigate to the Call Hierarchy entry:
Expand the Main menu entry, then expand the Navigate entry.
Scroll down and select the Call Hierarchy entry.
Click OK to close the Choose Actions To Add dialog.
At the end of the list of menu entries there should now be a new entry for Call Hierarchy.
Click OK to close the Settings window.
Position the mouse cursor over a method in the editor window, right click and select Browse Call Hierarchy from the bottom of the popup menu:

How do I disable the hover menu appearing in the lower lefthand corner of the intellij window?

How do I disable the menu appearing in the lower lefthand corner of the intellij window?
Is this called the tool menu?
I use hot corners on my macbook and am constantly activating it accidentally.
There is a Registry key for that, you can either add
-Dide.windowSystem.showTooWindowButtonsSwitcher=false
into .vmoptions (Help | Edit Custom VM Options) or you can press Help | Find Action | Registry, Enter (or Ctrl+Alt+Shift+/) and trigger it in the dialog (start typing the key name for the speed search):
This menu can be also disabled by disabling the status bar:

Unable to type > character in Intellij IDEA

Whenever I am using the Canadian Multilingual Standard Keyboard, I can't type the greater than character which are the keys AltCar + period. A dialog box shows
There are no custom foldings in the current file.
Removing/changing the shortcut for Fold selection/ Remove region in the Keymap did not work. I've also tried to add actionSystem.force.alt.gr=true to bin/idea.properties but I can't apply changes to idea.properties.
Press Ctrl-Alt-Shift-Slash (Cmd-Alt-Shift-Slash if you're using Mac OS X), select "Registry" from the menu that appears and enable the "actionSystem.force.alt.gr" checkbox in the menu that appears.
Go to File | Settings | Keymap. On the top of the screen, in a dropdown box you will see that one of the default keymap is selected. You need to make a copy of it. This is important becasue you can't change the default keymaps. To copy it, click on the Copy button on the right of the dropdown box and name your new layout however you want.
Now, with your new Keymap selected, search for the "Custom Fo...". Right click on any shortcut that is mapped to either Alt+. or Ctrl+Alt+. to delete it. Hit OK and you should be good to go.

How to set single clicking to open file in IntelliJ IDEA?

And what are counterparts to eclipse's declaration view and javadoc view?
In the Project View click on the "gear" icon and enable the Open Files with Single Click option:
Use Ctrl+Q for Quick JavaDoc and Ctrl+Shift+I for the declaration pop-up.
Now it's available in a simpler way. In the Project View click on the Gear icon and then click Open Files with Single Click:
Go to Preferences and turn on Enable preview tab, that will enable Open Files with Single Click for all projects.
Javadoc opens with Ctrl+Q
There's no declaration view per se, however, you probably will be satisfied with Ctrl+Shift+I shortcut for quick lookup.
Don't know of any ways to configure it to open files on single clicks. Somehow, if you get used to the shortcuts, you skip using mouse very much. For instance, Alt+Home will bring the navigation bar up and you can move with arrows and open the file with Enter. Or just use some other shortcuts like Ctrl+N or Ctrl+E depending on the context.