mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-26 06:46:35 +00:00
Fix ANSI offset calculation
This commit is contained in:
parent
4e0e492427
commit
b68e59a24b
@ -50,7 +50,7 @@ func extractColor(str *string) (*string, []ansiOffset) {
|
||||
if !newState.equals(state) {
|
||||
if state != nil {
|
||||
// Update last offset
|
||||
(&offsets[len(offsets)-1]).offset[1] = int32(output.Len())
|
||||
(&offsets[len(offsets)-1]).offset[1] = int32(utf8.RuneCount(output.Bytes()))
|
||||
}
|
||||
|
||||
if newState.colored() {
|
||||
|
Loading…
Reference in New Issue
Block a user