fix: proper Unicode/Chinese character handling in UI #234
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fix garbled display and incorrect backspace behavior for Chinese/Unicode characters in the TUI.
Closes #233
Problem
Chinese and other multi-byte Unicode characters were displaying as garbled text (e.g.,
是的分身艺术�) because:str[:n]), which cuts UTF-8 characters in the middlelen()which returns byte count, not display widthSolution
Use
github.com/mattn/go-runewidth(already a dependency) for proper Unicode handling:runewidth.StringWidth()- calculate actual display widthrunewidth.Truncate()- safely truncate strings without breaking characters[]rune()conversion - for character-based operations like backspaceChanges
ui/list.gorunewidthfor title/branch truncation and width calculationui/err.gorunewidthfor error message truncationapp/app.go[]runefor backspace, userunewidthfor length checkTesting
go test ./...)go build .)Screenshots
Before (Bug):
Instance names with Chinese characters show garbled text when truncated or after backspace.
After (Fixed):
Chinese characters display correctly and backspace removes whole characters.