File tree 2 files changed +5
-3
lines changed
stdlib/InteractiveUtils/src
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ Standard library changes
66
66
* ` Base.julia_cmd ` now propagates the ` --inline=(yes|no) ` flag ([ #29858 ] ).
67
67
* New ` DateTime(::Date, ::Time) ` constructor ([ #29754 ] ).
68
68
* ` isdiag ` and ` isposdef ` for ` Diagonal ` and ` UniformScaling ` ([ #29638 ] ).
69
+ * New ` edit(m::Module) ` method which opens the main source file for module ` m ` ([ #29636 ] ).
69
70
70
71
Compiler/Runtime improvements
71
72
-----------------------------
Original file line number Diff line number Diff line change 87
87
edit(module)
88
88
89
89
Edit 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.
91
92
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 .
94
95
95
96
The editor can be changed by setting `JULIA_EDITOR`, `VISUAL` or `EDITOR` as an environment
96
97
variable.
You can’t perform that action at this time.
0 commit comments