Skip to content

Commit

Permalink
Fix REPL keybinding CTRL-Q for stdlib methods (#47637)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7514bcf)
  • Loading branch information
rashidrafeek authored and KristofferC committed Dec 21, 2022
1 parent 45df676 commit df040b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/REPL/src/REPL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ function setup_interface(
if n <= 0 || n > length(linfos) || startswith(linfos[n][1], "REPL[")
@goto writeback
end
InteractiveUtils.edit(linfos[n][1], linfos[n][2])
InteractiveUtils.edit(Base.fixup_stdlib_path(linfos[n][1]), linfos[n][2])
LineEdit.refresh_line(s)
return
@label writeback
Expand Down

0 comments on commit df040b1

Please sign in to comment.