diff options
author | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-08-06 10:52:52 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-08-06 10:52:52 +0200 |
commit | 7ce0747ea99eae564ebea2f89e50eda382731dae (patch) | |
tree | 081ef6d603d4bbe1d2669480d28e7d19c86071ae /ui/style.go | |
parent | Support reverse character code (diff) |
Actually the rune width issue is from alacritty
Diffstat (limited to 'ui/style.go')
-rw-r--r-- | ui/style.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/style.go b/ui/style.go index 0156ae3..081b173 100644 --- a/ui/style.go +++ b/ui/style.go @@ -5,9 +5,7 @@ import ( "github.com/mattn/go-runewidth" ) -var condition runewidth.Condition = runewidth.Condition{ - EastAsianWidth: true, -} +var condition runewidth.Condition = runewidth.Condition{} func runeWidth(r rune) int { return condition.RuneWidth(r) |