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:
Before and After
| BEFORE | AFTER |
|---|---|
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:
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.