Visual Studio Code – When in snippet mode in VS Code, how can I ONLY move through placeholders using the Tab key without accepting suggestions
Assume I have this sample snippet "Sample HTML A snippet": { "prefix": "htmla", "body": [ "<a href="${1:urlhere}">${2:Text To Appear}</a>" ], "description": "Sample HTML A snippet" }, When I type "htmla" it is launched If I happen to type "htmla" again…