mirror of https://github.com/Hilbis/Hilbish
Compare commits
1 Commits
cce5f506d2
...
df980f5fff
Author | SHA1 | Date |
---|---|---|
sammyette | df980f5fff |
|
@ -22,8 +22,10 @@ completed.
|
||||||
navigation of neighboring doc files.
|
navigation of neighboring doc files.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix infinite loop when navigating history without any history. [#252](https://github.com/Rosettea/Hilbish/issues/252)
|
- Return the prefix when calling `hilbish.completions.call`
|
||||||
- Return the prefix when calling `hilbish.completions.call`. [#219](https://github.com/Rosettea/Hilbish/issues/219)
|
|
||||||
|
[#219]: https://github.com/Rosettea/Hilbish/issues/219
|
||||||
|
### Fixed
|
||||||
- Replaced `sed` in-place editing with `grep` and `mv` for compatibility with BSD utils
|
- Replaced `sed` in-place editing with `grep` and `mv` for compatibility with BSD utils
|
||||||
|
|
||||||
## [2.1.2] - 2022-04-10
|
## [2.1.2] - 2022-04-10
|
||||||
|
|
|
@ -156,8 +156,8 @@ func (rl *Instance) walkHistory(i int) {
|
||||||
rl.updateHelpers()
|
rl.updateHelpers()
|
||||||
|
|
||||||
// In order to avoid having to type j/k twice each time for history navigation,
|
// In order to avoid having to type j/k twice each time for history navigation,
|
||||||
// we walk once again. This only ever happens when we aren't out of bounds and the last history item was not a empty string.
|
// we walk once again. This only ever happens when we aren't out of bounds.
|
||||||
if new != "" && dedup && old == new {
|
if dedup && old == new {
|
||||||
rl.walkHistory(i)
|
rl.walkHistory(i)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue