Description
I have the following lines in my ~/.inputrc
:
"\e[A": history-search-backward
"\e[B": history-search-forward
For most apps that use the readline library, this means that I can search my history by typing the first few characters of a previous command and pressing the up arrow. However, spago repl
seems to ignore this, and just goes to the previous history entry, regardless of what I type.
This feature would be particularly useful for purescript, since there seems to be no way to reload a package without also losing all the bindings that that were entered previously. It would be a lot easier to re-enter commands if I was able to search the history for them.
(By the way, I don't yet understand the purescript ecosystem well enough to know if this is an issue with spago or some other package - if I should file this issue somewhere else please let me know.)