KristofferC / OhMyREPL.jl

Syntax highlighting and other enhancements for the Julia REPL
https://kristofferc.github.io/OhMyREPL.jl/latest/
Other
768 stars 60 forks source link

Redundant quotation mark `"` in tab completion of paths #348

Closed adomasbaliuka closed 3 months ago

adomasbaliuka commented 3 months ago

Suppose I have a file in the current working directory named "somefile.txt"

When NOT using OhMyREPL, if I type

julia> open("./s

and then type TAB, the completion gives me (which is good!)

julia> open("./somefile.txt"

However, when USING OhMyREP, typing the first " character inside open("./s automatically writes the "closing" second " character (and also a closing ) but that doesn't matter here). When invoking the tab completion, another " character is produced, resulting in

julia> open("./somefile.txt"")

I then have to delete the extra ".

System Info

  [5fb14364] OhMyREPL v0.5.24

Julia Version 1.10.4
Commit 48d4fd48430 (2024-06-04 10:41 UTC)
Build Info:
  Official https://julialang.org/ release
axsk commented 3 months ago

c.f. https://github.com/KristofferC/OhMyREPL.jl/issues/334