To set off option that PhpStorm 2020.3.1 shows some hints hovering htmk tag - phpstorm

Using PhpStorm 2020.3.1 I see some hints when I really do not need them.
Say in cases when I hover mouse over “<div” tag.
If it possible to show this hint only on some action, say context menu some menu item selected?
Thanks!

Please try disabling Show quick documentation on mouse move in Settings | Editor | Code Editing.
Quick documentation can be viewed via View | Quick documentation; see what shortcut is assigned to this action (usually it's Ctrl+Q on Windows, F1 on Mac OSX)

Related

Jump between highlights in PhpStorm

Is there a way to navigate up and down the highlights as in the screenshot?
I read the article here: https://www.jetbrains.com/help/phpstorm/navigating-through-the-source-code.html but couldn't find what I'm looking for
Basic usage is I just want to sprinkle a bunch of highlights around the code and be able to jump between them using a shortcut.
I know that an alternative would be to use the favorites, but I want to see if it can be done using highlights.
I'm on a Mac.
I just want to sprinkle a bunch of highlights around the code and be able to jump between them using a shortcut.
Navigate > Back and Navigate > Forward should work ideally in that case.
According to your comment above, you're using these breakpoints as a kind of visible bookmark within your code. However, IntelliJ does have a Bookmarks feature.
I would therefore suggest to simply alter the way they appear so they stick out more:
Go to File | Settings | Editor | Color Scheme | General
On the right pane, expand/select Editor | Bookmarks
Adjust the background and/or foreground colors on the right (and more if needed)
Here's an example with funky bookmarks (pardon my light theme):
You can then navigate between them using:
Navigate | Bookmarks | Previous Bookmark
Navigate | Bookmarks | Next Bookmark

What is the shortcut key to show/hide tool buttons in PhpStorm?

I am unable to find the shortcut key for this button. And as I do not know the name of this button I cannot search for it.
There is no shortcut by default, but you can go to Settings and type "tool buttons" into the search bar. Then you can assign a keystroke to "Tool Buttons" feature.
Here is your answer from official docs
Hiding all tool windows attached to the same tool window bar
Do one of the following:
Press and hold the Alt (for Windows and Linux users) or ⌘ (for macOS users) key, and click hide on the title bar of any of the tool
windows attached to the corresponding tool window bar.
Choose Window | Active Tool Window | Hide Side Tool Windows in the main menu. This command hides all the tool windows attached to same
tool window bar as the active tool window or the last of the active
tool windows.
I find that double tapping Alt key does the trick for me.
Maybe is Ctrl+Tab
Check this. In the link you can read :
Switch between the tool windows and files opened in the
editor. Ctrl+Tab

ArcMap editor panel window not opening

I have installed ArcMap Desktop 10.5.1 on a new computer and have a problem. I have never experienced with any previous versions of ArcMap.
Pressing the button of the toolbar for the Editor
I can’t access the toolbar.
I also can see that the program notices that I have pressed the button by the ArcMap-window ‘flickering’ and I see the Editor-window that should open for less than a second at some occasions.
I have tried to see if it ends up hidden somewhere, but it does not seems like it.
Printscreen of the ArcMap window with the editor button
Does anyone know what can be the problem and how to handle it?
I have tried to search for answers both at the ESRI help-page, here in stackoverflow and in other broad search engines, but this doesn’t seem to be a common problem.
This problem can have many causes and there are 2 different ways to open the editor toolbar.
Try click Customize > Toolbars > Editor (I will add a pic for it)
Right-click while your mouse on the main menu. The toolbar will be open directly and check the editor. Same solution.
If you have still this problem you must see another reason for the problem.
For example, do you using a second monitor? If you using it maybe the editor toolbar coming from another monitor. Check your monitor/monitors also.
If you still have problems, please write. There is another solution.
However, I am not writing now because it will reset usage of interface.

How to disable the annoying NetBeans auto-suggest while typing

When I am typing in NetBeans 8.2, whether it is a HTML paragraph or something like an input field, this annoying auto-suggest feature keeps on popping up. It is really annoying when I try to press enter to start a new line as it will insert a load of code when I press enter, since 'Button' is automatically highlighted.
I've included a screenshot of the problem below...
How can I disable this autocorrect feature. I don't want to disable autoorrect for PHP or when actually setting up a HTML tag (so I want to use it in a situation like this... <input type="autocorrect displays here" />, but not when typing anything else).
Sorry if I haven't explained myself very well, I can't really think of a good way to describe my problem. Please, leave a commend if you need to know more.
Thanks :)
PS: I can't find any other answers on the internet because I don't know what this is called, since I want this specific auto-suggest to disappear, so please direct me to another answer and I'll delete this question if the answer is appropriate.
PPS: I think the palette may have something to do with it but I can't be sure.
I finally found the solution for this annoying problem:
Simply go to Tools/Palette/Code Clips and remove everything from Palette (all folders and items).
Now the problem is gone!
If you go into NetBeans > Tools > Options > Editor > Code Completion, you can check or uncheck "Auto Popup Completion Window" for whatever Languages you want.
If you move over to the Code Templates tab, you can also customize the specific autocomplete rules for each Language. That way, you can leave certain ones in that you find helpful and remove ones that you find bothersome.
Today I finally had enought of these * autocompletes in my * code.
Found my way thru Google to this question and found no comfort from the answers.
But this is how I did it:
Open Code Clips -manager (Tools > Palette > Code Clips)
Select all HTML-related and click "Remove"
Profit
Apache Netbeans 12.1.
Palette > Code Clips > Remove -- does not work.
NetBeans > Tools > Options > Editor > Code Completion > Disable "Auto popup completion window" -- does work.
In NetBeans 12, disabling the Auto Popup Completion Window option for HTML does not solve the problem when editing PHP files, the popup shows up whenever Tab is pressed in HTML portions of code.
The solution is to keep the Auto Popup Completion Window active for All Languages, then switch to the Code Templates tab, select Language: HTML, remove all templates from the list, and voilá. No more HTML popup suggestions, anywhere, ever. Only the good old PHP suggestions will remain active.

Mouse Right Click Keyboard Shortcut in PHPStorm

In most Windows applications, I am able to replicate the right mouse button click using the combo Shift + F10. Shift + F10 is mapped as a shortcut to debug my current file in PHPStorm. I've looked around the mapping section in settings but wasn't able to find a way to restore this combo so that it mimics a right mouse click. Is this possible in PHPStorm?
The action you need is called Show Context Menu and located under Other branch in Settings | Keymap
P.S.
Screenshot above shows Shift+F10 shortcut already assigned to it.
P.P.S.
It is for v6, but I assume it will work in v5 as well.