x-motemen / gore

Yet another Go REPL that works nicely. Featured with line editing, code completion, and more.
MIT License
5.11k stars 148 forks source link

What methods available in a package? #220

Closed aphsa closed 1 year ago

aphsa commented 1 year ago

Is there a way to check what methods are available in a given package. say for example the "log" module after it has been imported?

itchyny commented 1 year ago

Try :doc log.

aphsa commented 1 year ago

That worked. I had to import the package first

aphsa commented 1 year ago

Solution worked