Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit e42aab5

Browse files
committed
Fix JuliaLang#6473 (REPL path completion close quote)
1 parent 6b34821 commit e42aab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/REPLCompletions.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function completions(string, pos)
160160
startpos = nextind(string, rsearch(string, non_filename_chars, pos))
161161
r = startpos:pos
162162
paths = complete_path(string[r])
163-
if inc_tag == :string && length(paths) == 1
163+
if inc_tag == :string && length(paths) == 1 && !isdir(paths[1])
164164
paths[1] *= "\""
165165
end
166166
return sort(paths), r, true

0 commit comments

Comments
 (0)