> ## Documentation Index
> Fetch the complete documentation index at: https://glua.bluejutzu.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# GLua Language Server Commands

> All VS Code commands provided by GLua Language Server, with what each one does and when to reach for it during Garry's Mod addon development.

GLua Language Server adds several commands to the VS Code Command Palette. Use them to inspect your addon, regenerate config files, or force a re-scan after large file changes.

| Command                              | Description                                                                                                                                                                                  |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `GLua: Show Net Message Graph`       | Opens a graph of every net message in your workspace. Shows who registers the message, who sends it, and who handles it. Use this to find orphaned or mismatched net traffic.                |
| `GLua: Create Linter Config File`    | Writes a `.glua.json` file into the workspace root using your current settings as the baseline. Edit the file afterward to tune rule severity.                                               |
| `GLua: Create Formatter Config File` | Writes a `.gluafmtrc.json` file into the workspace root using your current formatter settings as the baseline.                                                                               |
| `GLua: Re-index Workspace`           | Forces a full rescan of the workspace. Reach for this after large disk changes (for example, switching Git branches or bulk file moves) when the incremental watcher may have missed events. |
| `GLua: Open Settings`                | Opens the GLua Language Server settings page in the VS Code Settings UI.                                                                                                                     |

<Tip>
  Open any command quickly from the Command Palette with **Ctrl+Shift+P** (Windows/Linux) or **Cmd+Shift+P** (macOS), then type the command name.
</Tip>


## Related topics

- [Get Started with GLua Language Server](/quickstart.md)
- [Configure GLua Language Server](/configuration/overview.md)
- [Install GLua Language Server for VS Code](/installation.md)
- [GLua Language Server Performance](/reference/performance.md)
