Gopls already supports navigating from Go source to assembly files (use "Go to definition" on a func declaration with no body), but it wouldn't be hard for it to support navigation within assembly files, and from assembly files to Go files. The necessary parts are:
This is obviously not a high priority, but it's a fun little project.
@golang/compiler @golang/runtime
Gopls already supports navigating from Go source to assembly files (use "Go to definition" on a
funcdeclaration with no body), but it wouldn't be hard for it to support navigation within assembly files, and from assembly files to Go files. The necessary parts are:go.sLanguageID.file.Asm.go.slanguageID support in eglot, vscode-go, neovim.This is obviously not a high priority, but it's a fun little project.
@golang/compiler @golang/runtime