denvash / twin.macro-autocomplete-vscode

Autocomplete extension for twin.macro

Home Page:https://marketplace.visualstudio.com/items?itemName=DennisVash.twin-macro-autocomplete-vscode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

twin.macro auto-complete (Work in progress!)

Currently only supports Autocomplete (no intellisense) for one line scope:

tw`/* auto complete here as one-liner */`

VScode intellisense extension for twin.macro

Install from marketplace.

screenshot

{
    // Controls if quick suggestions should show up while typing
    "editor.quickSuggestions": true,

    // Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
    "editor.acceptSuggestionOnEnter": true,

    // Controls the delay in ms after which quick suggestions will show up.
    "editor.quickSuggestionsDelay": 10,

    // Enable word based suggestions
    "editor.wordBasedSuggestions": true,

    // Enable parameter hints
    "editor.parameterHints": true
}

Resources

About

Autocomplete extension for twin.macro

https://marketplace.visualstudio.com/items?itemName=DennisVash.twin-macro-autocomplete-vscode


Languages

Language:TypeScript 100.0%