forio / julia-studio

An IDE for the Julia Language
forio.com/products/julia-studio
GNU General Public License v3.0
223 stars 48 forks source link

Unicode Interpretation #231

Open bdeonovic opened 10 years ago

bdeonovic commented 10 years ago

Can we have support to have unicode characters correctly interpreted?

julia> println("line1"); println("line2"); println("line3"); print("\u1b[1F"); print("line3 PLUS");
line1
line2
line3 PLUS

JuliaStudio currently does not interpret the unicode correctly so you get

line1
line2
line3
\u1b[1Fline3 PLUS