Reputation: 11
In my VS Code editor Ctrl+click and F12 don't works for "go to definition". I'm working on a Laravel project, whenever I click Ctrl+click for the definition of a method it's not working. My VS Code is up to date, no update available. I tried to Edit in keyboard shortcuts/preferences but it still doesn't work.I disabled some extensions, (ESLint, Prettier etc.). I tried to go to settings and see Preferences, Keyboard shortcuts , there where set "Ctrl + Click" or F12. I tried to replace them with some other code, but not working, replacement is also not working.
Upvotes: 0
Views: 470
Reputation: 1449
In your VSCode keyboard settings, ensure that you have the correct "when" column filled out:
{
"key": "f12",
"command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
}
Upvotes: 0