Skip to content

Commit d12c9cb

Browse files
rashidrafeekKristofferC
authored and
KristofferC
committed
Fix REPL keybinding CTRL-Q for stdlib methods (#47637)
(cherry picked from commit 7514bcf)
1 parent f441baf commit d12c9cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/REPL/src/REPL.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ function setup_interface(
10851085
if n <= 0 || n > length(linfos) || startswith(linfos[n][1], "REPL[")
10861086
@goto writeback
10871087
end
1088-
InteractiveUtils.edit(linfos[n][1], linfos[n][2])
1088+
InteractiveUtils.edit(Base.fixup_stdlib_path(linfos[n][1]), linfos[n][2])
10891089
LineEdit.refresh_line(s)
10901090
return
10911091
@label writeback

0 commit comments

Comments
 (0)