Compare commits

...

2 Commits

Author SHA1 Message Date
sammyette 32b421d402
docs: remove support notice 2022-03-15 22:20:23 -04:00
TorchedSammy 0ee47cc6f0
fix(readline): clear history filter on Readline, fixes filtering after ctrl-c 2022-03-15 16:27:12 -04:00
2 changed files with 1 additions and 2 deletions

View File

@ -29,8 +29,6 @@ it to be.
</div> </div>
# Installation # Installation
**NOTE:** Hilbish is currently only officially supported and tested on Linux
## Prebuilt binaries ## Prebuilt binaries
Go [here](https://nightly.link/Rosettea/Hilbish/workflows/build/master) for Go [here](https://nightly.link/Rosettea/Hilbish/workflows/build/master) for
builds on the master branch. builds on the master branch.

View File

@ -38,6 +38,7 @@ func (rl *Instance) Readline() (string, error) {
rl.modeViMode = VimInsert rl.modeViMode = VimInsert
rl.pos = 0 rl.pos = 0
rl.posY = 0 rl.posY = 0
rl.tcPrefix = ""
// Completion && hints init // Completion && hints init
rl.resetHintText() rl.resetHintText()