get_symbol_source
Return source code of the innermost symbol (function, class, struct) at a cursor position by walking the language server symbol tree and slicing the file range.
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 |