mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-21 21:13:22 +00:00
Compare commits
2 Commits
1016b6a4c8
...
698110717a
Author | SHA1 | Date | |
---|---|---|---|
|
698110717a | ||
38d036d96f |
@ -128,15 +128,19 @@ func (rl *Instance) walkHistory(i int) {
|
||||
}
|
||||
|
||||
rl.histOffset += i
|
||||
historyLen := history.Len()
|
||||
if rl.histOffset == 0 {
|
||||
rl.line = []rune(rl.lineBuf)
|
||||
rl.pos = len(rl.lineBuf)
|
||||
} else if rl.histOffset <= -1 {
|
||||
rl.histOffset = 0
|
||||
} else if rl.histOffset > historyLen {
|
||||
// TODO: should this wrap around?s
|
||||
rl.histOffset = 0
|
||||
} else {
|
||||
dedup = true
|
||||
old = string(rl.line)
|
||||
new, err = history.GetLine(history.Len() - rl.histOffset)
|
||||
new, err = history.GetLine(historyLen - rl.histOffset)
|
||||
if err != nil {
|
||||
rl.resetHelpers()
|
||||
print("\r\n" + err.Error() + "\r\n")
|
||||
|
Loading…
x
Reference in New Issue
Block a user