https://github.com/wojtekmach/iex_help_open
https://github.com/wojtekmach/iex_help_open
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wojtekmach/iex_help_open
- Owner: wojtekmach
- License: mit
- Created: 2016-12-28T17:41:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-28T19:45:56.000Z (almost 9 years ago)
- Last Synced: 2025-03-06T17:53:48.816Z (7 months ago)
- Language: Elixir
- Size: 6.84 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# IExHelpOpen
Similar to IEx's `h` but instead of printing documentation it opens it in a browser window.
## Usage
```
# install iex_help_open
$ mix archive.install https://github.com/wojtekmach/iex_help_open/releases/download/v0.1.0/iex_help_open-0.1.0.ez# use it in a mix project
$ iex -S mix
iex> import_if_available IExHelpOpen # or add this line to .iex.exsiex> ho inspect
# opens https://hexdocs.pm/elixir/Kernel.html#inspect/2iex> ho Ecto.Changeset.cast/3
# opens https://hexdocs.pm/ecto/Ecto.Changeset.html#cast/3
```## Demo

## Known limitations
- works only with Mix
- does not handle errors well
- does not support callbacks
- does not support types## License
MIT