We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e89886 commit 681115cCopy full SHA for 681115c
src/completions.jl
@@ -38,7 +38,7 @@ function basecompletionadapter(line, mod, force, lineNumber, column, text)
38
pre = line[replace]
39
d = []
40
for c in comps
41
- if REPLCompletions.afterusing(line, first(replace))
+ if REPLCompletions.afterusing(line, Int(first(replace))) # need `Int` for correct dispatch on x86
42
c isa REPLCompletions.PackageCompletion || continue
43
end
44
try
0 commit comments