explain_symbol
Get documentation and type information for a symbol at a specific position in code. Understand what a symbol is without navigating to its source.
Instructions
Returns DOCUMENTATION and type information (LSP hover content: function signature, doc comment, often in Markdown) for the symbol at the given position. Use when you need to understand what a symbol is without navigating to its source. For the file location of where the symbol is defined, use get_definition instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uri | No | Absolute path, file:// URI, or workspace-relative path of the document | |
| line | Yes | Zero-based line number | |
| character | Yes | Zero-based character offset |