mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-29 16:23:57 +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 !newState.equals(state) {
|
||||||
if state != nil {
|
if state != nil {
|
||||||
// Update last offset
|
// 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() {
|
if newState.colored() {
|
||||||
|
Loading…
Reference in New Issue
Block a user