mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-16 02:07:06 +00:00
parent
352ea07226
commit
b1459c79cf
@ -1338,8 +1338,7 @@ func (t *Terminal) updatePromptOffset() ([]rune, []rune) {
|
|||||||
|
|
||||||
_, overflow := t.trimLeft(t.input[:t.cx], maxWidth)
|
_, overflow := t.trimLeft(t.input[:t.cx], maxWidth)
|
||||||
minOffset := int(overflow)
|
minOffset := int(overflow)
|
||||||
maxOffset := util.Min(util.Min(len(t.input), minOffset+maxWidth), t.cx)
|
maxOffset := minOffset + (maxWidth-util.Max(0, maxWidth-t.cx))/2
|
||||||
|
|
||||||
t.xoffset = util.Constrain(t.xoffset, minOffset, maxOffset)
|
t.xoffset = util.Constrain(t.xoffset, minOffset, maxOffset)
|
||||||
before, _ := t.trimLeft(t.input[t.xoffset:t.cx], maxWidth)
|
before, _ := t.trimLeft(t.input[t.xoffset:t.cx], maxWidth)
|
||||||
beforeLen := t.displayWidth(before)
|
beforeLen := t.displayWidth(before)
|
||||||
|
Loading…
Reference in New Issue
Block a user