Skip to main content

VS Code String Completions

VS Code won’t suggest completions for partial strings by default. This prevents Tokenami from updating its suggestions as you type. To enable this feature, add the following to .vscode/settings.json in your project:
{
  "editor.quickSuggestions": {
    "strings": true
  }
}

Before and After

BEFOREAFTER
Before string completionsAfter string completions

Improve Autocomplete Speed and Accuracy

Some editors that Tokenami integrates with (such as VS Code and Cursor) support VS Code–style configuration settings. If you feel Tokenami’s completions are slow or match on irrelevant suggestions, you can refine IntelliSense behaviour by adding the following settings to your workspace .vscode/settings.json:
{
  "editor.suggest.filterGraceful": false,
  "editor.suggest.matchOnWordStartOnly": true
}

What These Settings Do

  • editor.suggest.filterGraceful: false: Filters out loosely related suggestions so closer matches are shown.
  • editor.suggest.matchOnWordStartOnly: true: Reduces noise by prioritising suggestions that begin with your typed characters.

Supported Editors

Tokenami is officially supported in the following editors:

TypeScript Configuration

Make sure your editor uses the workspace TypeScript version. For VS Code, see the official documentation on how to configure this.

Need Help?

If you encounter any issues with your editor setup, join our Discord server for assistance.