Expand description
LSP-based tools for code intelligence.
Provides 7 tools that leverage language server capabilities: hover, go-to-definition, find-references, diagnostics, completions, rename, and format.
Structsยง
- LspCompletions
Tool - Provides code completion suggestions from the language server.
- LspDefinition
Tool - Navigates to the definition of a symbol via the language server.
- LspDiagnostics
Tool - Retrieves diagnostics (errors, warnings) for a file from the language server.
- LspFormat
Tool - Formats a source file using the language server.
- LspHover
Tool - Provides hover information (type info, documentation) via the language server.
- LspReferences
Tool - Finds all references to a symbol via the language server.
- LspRename
Tool - Renames a symbol across the project using the language server.