jroimartin / gocui

Minimalist Go package aimed at creating Console User Interfaces.
BSD 3-Clause "New" or "Revised" License
9.85k stars 610 forks source link

Examples does not support east asian windows? #217

Open heri3x opened 4 years ago

heri3x commented 4 years ago

Hi. It seems that Gocui examples need to be added the code below in main funcs when I build it for Windows 10 (in japanese language). You may already know. Just for info.

    if runtime.GOOS == "windows" && runewidth.IsEastAsian() {
        g.ASCII = true
    }
Regentag commented 4 years ago

This is a problem with the console's code page. Try changing the code page to UTF-8 instead of ASCII mode. C:\> CHCP 65001