You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
Yeah this problem was caused by a change in the go-runewidth dependency. It seems that now that package counts tabs as having a string width of 0 instead of 1. Anyway, you'll need to update your dependencies for micro. You can run go get -u -d ./cmd/micro to do that (that will update all of them. You can also just go to $GOPATH/src/github.com/mattn/go-runewidth and git pull from there).
28af256
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm still getting a stringWidth error on
make test
with the latest commit. Am I doing something wrong?28af256
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this problem was caused by a change in the
go-runewidth
dependency. It seems that now that package counts tabs as having a string width of 0 instead of 1. Anyway, you'll need to update your dependencies for micro. You can rungo get -u -d ./cmd/micro
to do that (that will update all of them. You can also just go to$GOPATH/src/github.com/mattn/go-runewidth
andgit pull
from there).