- Notifications
You must be signed in to change notification settings - Fork48
-
If I start to create a link, but have a misspelling and backspace, the link creation dialog goes away. Is there a keyboard shortcut to re-invoke the dialog? Or is there an exported command I could setup my on shortcut for? I Tried grokking the source, but am new to TypeScript and VS Code extension structure so it wasn't clear to me where I should be looking. |
BetaWas this translation helpful?Give feedback.
All reactions
Hi,
Autocomplete triggered either by typing[
character (seehere) or by using^Space
(ctrl + space) shortcut described in thedocumentation.
In command palette this command is called "Trigger Suggest" and you can rebind it to any keyboard shortcut if needed using VS Codekeybindings.json
andeditor.action.triggerSuggest
command key.
Replies: 1 comment
-
Hi, Autocomplete triggered either by typing In command palette this command is called "Trigger Suggest" and you can rebind it to any keyboard shortcut if needed using VS Code |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1