mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-01-11 14:38:10 +03:00
Cleanup an old var
This commit is contained in:
parent
091c915462
commit
764fd321f6
@ -412,7 +412,6 @@ func (m *Model) deleteWordLeft() bool {
|
||||
return m.deleteBeforeCursor()
|
||||
}
|
||||
|
||||
i := m.pos
|
||||
blink := m.setCursor(m.pos - 1)
|
||||
for unicode.IsSpace(m.value[m.pos]) {
|
||||
if m.pos <= 0 {
|
||||
@ -434,10 +433,10 @@ func (m *Model) deleteWordLeft() bool {
|
||||
}
|
||||
}
|
||||
|
||||
if i > len(m.value) {
|
||||
if m.pos > len(m.value) {
|
||||
m.value = m.value[:m.pos]
|
||||
} else {
|
||||
m.value = append(m.value[:m.pos], m.value[i:]...)
|
||||
m.value = append(m.value[:m.pos], m.value[m.pos:]...)
|
||||
}
|
||||
|
||||
return blink
|
||||
|
Loading…
Reference in New Issue
Block a user