The extension will display a "goto impl" link above the Read method. When clicking the link:
If there's only one implementation, it will jump directly to it
If there are multiple implementations, a selection list will appear for you to choose
Requirements
Usage
After installing the extension, open any file containing Go interface definitions
You'll see "goto impl" links appear above interface methods
Click the link to jump to the implementation
How It Works
The extension automatically scans Go code for interface definitions and adds links above methods using VSCode's CodeLens feature. When a user clicks the link, the extension:
Uses VSCode's implementation provider to search for all implementations
Jumps directly if a single implementation is found
Shows a selection list if multiple implementations are found
Displays a notification if no implementations are found
Known Issues
No known issues at this time. If you discover any problems, please submit an issue on the GitHub repository.