File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
stdlib/InteractiveUtils/src Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ Standard library changes
6767 * ` Base.julia_cmd ` now propagates the ` --inline=(yes|no) ` flag ([ #29858 ] ).
6868 * New ` DateTime(::Date, ::Time) ` constructor ([ #29754 ] ).
6969 * ` isdiag ` and ` isposdef ` for ` Diagonal ` and ` UniformScaling ` ([ #29638 ] ).
70+ * New ` edit(m::Module) ` method which opens the main source file for module ` m ` ([ #29636 ] ).
7071
7172Compiler/Runtime improvements
7273-----------------------------
Original file line number Diff line number Diff line change 8787 edit(module)
8888
8989Edit the definition of a function, optionally specifying a tuple of types to indicate which
90- method to edit.
90+ method to edit. For modules, open the main source file. The module needs to be loaded with
91+ `using` or `import` first.
9192
92- For modules, open the main source file. The module needs to be loaded with `using` or
93- `import` first .
93+ !!! compat "Julia 1.1"
94+ `edit` on modules requires at least Julia 1.1 .
9495
9596The editor can be changed by setting `JULIA_EDITOR`, `VISUAL` or `EDITOR` as an environment
9697variable.
You can’t perform that action at this time.
0 commit comments