Home  >  Article  >  Backend Development  >  Can I bind a shortcut to quickly fix a specific weak warning?

Can I bind a shortcut to quickly fix a specific weak warning?

王林
王林forward
2024-02-10 15:12:09345browse

Can I bind a shortcut to quickly fix a specific weak warning?

php editor Yuzu, you will definitely encounter some weak warnings that will not cause the program to crash, but still need to be fixed to maintain good quality of the code. Fortunately, PHP provides an easy way to bind shortcuts to quickly fix specific weak warnings. By using the @ symbol, you can temporarily disable specific warnings in your code so that your code can run properly. However, it should be noted that this approach is not recommended as it will mask potential problems and should be avoided if possible.

Question content

I'm trying to bind a shortcut key to a specific weak warning in GoLand.

I like declaring implicit structure literals.

Although I clicked it in the gif, now I have the option "Show quick fixes" bound to the shortcut, but I still have to navigate to the "Problems" tool window and select the warning.

Is there a way to do it with a shortcut key? Just for this specific warning?

Workaround

I was able to solve this problem, or I guess what I have been doing is that what I was supposed to do was access from the editor show context actions option, now I just do that key binding and press enter and that's it. :)

The above is the detailed content of Can I bind a shortcut to quickly fix a specific weak warning?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:stackoverflow.com. If there is any infringement, please contact admin@php.cn delete