First-class editor support for Atscript (.as) files in Visual Studio Code. Powered by a full LSP implementation backed by @atscript/core.
Installation
Open VS Code
Go to Extensions (Ctrl+Shift+X)
Search for "Atscript" and install
Note:@atscript/core must be installed either globally (npm i -g @atscript/core) or at the root of the project you open in VS Code. If it cannot be found, language features (diagnostics, completions, go-to-definition, etc.) will not work.
Features
Syntax highlighting — full grammar for .as files
Autocomplete — context-aware suggestions for annotations, types, imports, and keywords
Hover tooltips — inline docs for annotations with argument types
Diagnostics — real-time error and warning reporting
Go to definition — navigate to declarations across files
Find references — locate all usages of a type or interface
Signature help — annotation argument signatures
Auto-generate .d.ts — builds type declarations on save
Config watching — reloads on atscript.config.* changes