You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Suppose I have a file in the current working directory named "somefile.txt"
When NOT using OhMyREPL, if I type
and then type TAB, the completion gives me (which is good!)
However, when USING OhMyREP, typing the first
"
character insideopen("./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 inI then have to delete the extra
"
.System Info
The text was updated successfully, but these errors were encountered: