This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Search history with buffer on pressing arrow key #62
Comments
Wow neat, you made me discover this feature in boot repl 😁 |
@arichiardi I'm using this features for years in Bash: =>> cat ~/.inputrc
"\e[A":history-search-backward
"\e[B":history-search-forward
set show-all-if-ambiguous on
set completion-ignore-case on |
If we're going to do something similar, I would probably prefer implementing something like Planck's new reverse i-search feature. @jiyinyiyong Thoughts? |
Well, I think |
I think I prefer reverse-i-search since it's more standart across shells, more people will know about it instinctively. It's also more powerful. I can also find the up behavior a bit intrusive. Reber i search is more optional. |
Working PR in #169 |
fixed 8486b14 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It's a feature in Boot REPL. I don't know what to call it but I use it for long. For example I got some histories:
Now I typed
(+
in the REPL and useUp
key to find history. Currently I got any history one by one. But in Boot, only(+ 1 2)
(+ 2 3)
are matched since the beginner characters are the same.I'm considering it as a new feature we need.
The text was updated successfully, but these errors were encountered: