I have to show errors/warnings by mouse now. Is there any hotkey or special button? I could find nothing in "Keyboard Shortcuts". Example of error:
Right-click on the corresponding entry line and select Show Error Help from the context menu, or click on the hyperlinked error code value in the Code column of the Error List.
The corresponding cmd name in VS Keybindings is editor.action.showHover
. On mac for me the key combo was: cmd+k cmd+i
. I'm not sure what it is on windows but you can find out through your command palette by typing show hover
. It will show you the current keybinding and you can execute it as well.
If you would like you can remap it like this:
{ "key": "ctrl+e", "command": "editor.action.showHover", "when": "editorTextFocus" }
With that, if your cursor is within an error/warning squiggly line, you can hit ctrl+e
to show what you would normally see with hover.
To make the box disappear, hit escape.
In case you are using VSCode in vim mode (VSCodeVim extension) move your cursor to the underlined code and type gh
.
See https://github.com/VSCodeVim/Vim#-vscodevim-tricks
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With