Keyboard Shortcuts
Navigation
| Shortcut | Action | Description |
|---|---|---|
| F12 | Go to Definition | Jump to Naite key’s definition location (Naite.t()) |
| Shift+F12 | Go to References | Display all reference locations for Naite key (Naite.get(), Naite.del()) |
| Cmd+Click | Go to Definition/References | Jump to definition or references based on VS Code settings |
| Cmd+T | Workspace Symbol Search | Search for Naite keys in workspace |
Autocomplete
| Trigger | Action | Description |
|---|---|---|
Naite.t(" | Key autocomplete | Display all Naite key list |
Naite.get(" | Key autocomplete | Display all Naite key list |
Naite.del(" | Key autocomplete | Display all Naite key list |



Command Palette Commands
Use the following commands from the Command Palette (Cmd+Shift+P).Sonamu: Open Naite Trace Viewer
Opens the Naite Trace Viewer. Check values recorded withNaite.t() during test execution in real-time.
Sonamu: Rescan Naite Keys
Rescans all Naite keys in the workspace. Useful when the key list isn’t updated or autocomplete isn’t working.Context Menu
Right-clicking on a Naite key string displays the following menu:- Go to Definition: Jump to definition location
- Go to References: Display reference location list
- Peek Definition: Preview definition inline
- Peek References: Preview references inline

Changing Shortcuts in Settings
You can customize shortcuts in VS Code settings:- Open Command Palette (Cmd+Shift+P)
- Run “Preferences: Open Keyboard Shortcuts”
- Search “Sonamu” to find related commands
- Change to desired shortcuts

Common Workflows
Test Writing Workflow
- Type
Naite.t("for key autocomplete - Run tests
- Trace Viewer opens automatically
- Click trace to check code location
- Verify values with
Naite.get()as needed
Debugging Workflow
- Add
Naite.t()to problematic section - Run tests
- Check recorded values in Trace Viewer
- Jump to location with F12
- Fix code and rerun
Key Cleanup Workflow
- Open Workspace Symbol Search with
Cmd+T - Search for key to clean up
- Check all references with Shift+F12
- Remove unused keys