From 67281c6be2fe46206d34561c6753caa4304912c1 Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 11 Jun 2024 13:20:43 -0500 Subject: [PATCH] add missing compat entry to edit --- stdlib/InteractiveUtils/src/editless.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stdlib/InteractiveUtils/src/editless.jl b/stdlib/InteractiveUtils/src/editless.jl index 5b87dc0c57d40..6d1d75f1072ea 100644 --- a/stdlib/InteractiveUtils/src/editless.jl +++ b/stdlib/InteractiveUtils/src/editless.jl @@ -223,6 +223,9 @@ Edit a file or directory optionally providing a line number to edit the file at. Return to the `julia` prompt when you quit the editor. The editor can be changed by setting `JULIA_EDITOR`, `VISUAL` or `EDITOR` as an environment variable. +!!! compat "Julia 1.9" + The `column` argument requires at least Julia 1.9. + See also [`InteractiveUtils.define_editor`](@ref). """ function edit(path::AbstractString, line::Integer=0, column::Integer=0)