You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today I tried the functionality via spago search CLI.
Searching for individual names works great!
But what I miss is some kind of "show everything" or "focus on one module" functionality. Use case: you remember the function you're looking for is in module XYZ, but can't remember its name. I'd like to list all functions from given module. Or maybe I'd like to just go through all names that are available in the docs to explore them.
For example in Haskell's ghci you can type these commands: :browse - show all things loaded in the repl (just functinn/type names without associated docs) :browse Module.Name - show list of names in given module
It would be great it this package had similar functionality in CLI :-)
The text was updated successfully, but these errors were encountered:
Maybe we should display some kind of help message when starting the repl listing this kind of stuff? (e.g. "press TAB to autocomplete, use +Module.Name or +packagename to query single module or single package", etc)
Or just show a Type :? for help like purs repl does and hide some help behind that.
Long repeated messages can be annoying for advanced users as I learned recently :D
Today I tried the functionality via
spago search
CLI.Searching for individual names works great!
But what I miss is some kind of "show everything" or "focus on one module" functionality. Use case: you remember the function you're looking for is in module XYZ, but can't remember its name. I'd like to list all functions from given module. Or maybe I'd like to just go through all names that are available in the docs to explore them.
For example in Haskell's ghci you can type these commands:
:browse
- show all things loaded in the repl (just functinn/type names without associated docs):browse Module.Name
- show list of names in given moduleIt would be great it this package had similar functionality in CLI :-)
The text was updated successfully, but these errors were encountered: