45 releases
| new 0.0.1-alpha.102 | Feb 16, 2026 |
|---|---|
| 0.0.1-alpha.101 | Feb 10, 2026 |
| 0.0.1-alpha.31 | Jan 12, 2026 |
#238 in Text editors
Used in vize
3.5MB
80K
SLoC
vize_maestro
Maestro - Language Server Protocol implementation for Vize Vue templates.
Name Origin
Maestro is a master conductor who coordinates an orchestra, bringing together all the instruments in harmony. Similarly, vize_maestro orchestrates all the Vize compiler tools to provide a seamless IDE experience through the Language Server Protocol.
Features
- Diagnostics - Parse errors, lint warnings, type errors
- Completion - Vue directives, components, Composition API
- Hover - Type information, documentation
- Go to Definition - Template to script navigation
- Find References - Cross-SFC reference search
- Rename - Safe identifier renaming
- Semantic Tokens - Vue-specific syntax highlighting
- Code Lens - Reference counts
- Code Actions - Quick fixes, refactoring
Usage
As Library
use vize_maestro::{serve, serve_tcp};
#[tokio::main]
async fn main() {
// stdio mode (for VS Code)
serve().await.unwrap();
// or TCP mode (for debugging)
// serve_tcp(9527).await.unwrap();
}
With CLI
vize lsp # stdio mode
vize lsp --port 9527 # TCP mode
Architecture
LSP Client (VS Code)
↓
tower-lsp
↓
MaestroServer
↓
┌────┴────┐
↓ ↓
DocumentStore VirtualCodeGenerator
↓ ↓
IdeContext ← VirtualDocuments
↓
IDE Services (Hover, Completion, Definition, ...)
License
MIT
Dependencies
~42–62MB
~879K SLoC