get_symbol_source
Extract the source code of the innermost symbol at a given cursor position. Provide a file and line/character to receive the symbol name, kind, line range, and source text.
Instructions
Return the source code of the innermost symbol (function, method, class, struct, etc.) whose range contains the given cursor position. Calls textDocument/documentSymbol, walks the symbol tree to find the smallest enclosing symbol, then slices the file at that symbol's range. Returns symbol_name, symbol_kind, start_line (1-based), end_line (1-based), and source text. Use line+character or position_pattern (@@-syntax) to specify the cursor. character defaults to 1.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| line | No | ||
| character | No | ||
| file_path | Yes | ||
| language_id | No | ||
| position_pattern | No |