Search code examples
javascriptvisual-studio-codevscode-extensionsvscode-snippets

VSCode Snippet Extension Doesn't Work in Strings


Snippets don't work in Strings in my Extension, but that's where they're supposed to be used. Any idea? They start with $. Could that be why?


Solution

  • You can use this code snippet and insert in your settings.json to allow Visual Studio Code to show the EXT snippets in strings.

    "editor.quickSuggestions": {
            "strings": true
        },