From 102e098dac12aaa45abf4dc7907a66a64658aec8 Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Fri, 22 Feb 2019 00:04:08 -0500 Subject: [PATCH] Updating CHANGELOG. And fixing a lint error. --- CHANGELOG.md | 2 ++ cell/runewidth/runewidth.go | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 089c2b5..e28f104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 series are provided. - Lint issues in the codebase, and updated Travis configuration so that golint is executed on every run. +- Termdash now correctly starts in locales like zh_CN.UTF-8 where some of the + characters it uses internally can have ambiguous width. ## [0.6.1] - 12-Feb-2019 diff --git a/cell/runewidth/runewidth.go b/cell/runewidth/runewidth.go index e5b0381..af2fdc6 100644 --- a/cell/runewidth/runewidth.go +++ b/cell/runewidth/runewidth.go @@ -1,5 +1,5 @@ -// runewidth is a wrapper over github.com/mattn/go-runewidth which gives -// different treatment to certain runes with ambiguous width. +// Package runewidth is a wrapper over github.com/mattn/go-runewidth which +// gives different treatment to certain runes with ambiguous width. package runewidth import runewidth "github.com/mattn/go-runewidth"