Skip to content

wedaly/gospelunk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

191 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gospelunk

Go spelunking! CLI tool to quickly find things in Go projects.

Project Status: Alpha

  • Things might change
  • Things might break

Installation

Once you have installed Go, run this:

go install github.com/wedaly/gospelunk@latest

Commands

List

To list definitions in Go packages:

gospelunk list ./...
  • You can specify packages using the same format as other go commands. See go help packages for details.
  • You can use the --template parameter to customize the Go template used to render the output.
  • Use --include-private to include non-exported definitions.
  • Use --include-tests to include definitions from "_test.go" files.

Inspect

To lookup type information, definitions, and references for an identifier in a Go file:

gospelunk inspect -f <FILE> -l <LINE> -c <COLUMN>
  • Line and column numbers are 1-indexed, and the column unit is bytes.
  • The --relationKinds parameter controls which relations are loaded (definitions, references, or implementations).
  • The --searchDir parameter controls where gospelunk searches for references and interface implementations.
  • You can use the --template parameter to customize the Go template used to render the output.

About

CLI tool to quickly find things in Go projects

Topics

Resources

License

Stars

6 stars

Watchers

1 watching

Forks

Contributors