Skip to content

Commit

Permalink
Hack doc/tabcomplete.jl to work around #10825
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahao committed Apr 15, 2015
1 parent c8725d6 commit 4af443f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions doc/tabcomplete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,14 @@ for entry in entries
thisline = ""
for (i, col) in enumerate(entry)
thisline *= rpad(col, maxlen[i], " ") * " "

#Hack round JuliaLang/julia#10825
if i==2 && any(x->charwidth(x)==2, collect(col))
thisline *=" "
end
end
println(rstrip(thisline))

if isheader
println(underline("-", maxlen))
isheader = false
Expand Down

0 comments on commit 4af443f

Please sign in to comment.