Reputation: 752
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:
Upvotes: 61
Views: 39597
Reputation: 413
ctrl+k, n
will show you the under carret error as inline text
(the same way that F8
/ shift + F8
does)
rather than a hovering tooltip as ctrl+k, ctrl+i
does.
Upvotes: 0
Reputation: 4699
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.
Upvotes: 72
Reputation: 754
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
Upvotes: 66