Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable `apropos` search via help mode by passing a string or regex: help?> "foo" help?> r"foo" This shouldn't interfere with any docstring lookup since we don't encourage documenting specific strings or regex objects. Docs for `@r_str` can still be found by searching for either an empty regex `r""` or `@r_str` directly. Enable specifying method signatures using help?> f(::Float64, ::Int) as well as the current behaviour help?> f(x, y) where `x` and `y` are already defined. This is quite useful when you don't have an instance of the required type. Prior to this an error was thrown in `gen_call_with_extracted_types` when using the `::` syntax. (cherry picked from commit 8c236e9)
- Loading branch information