You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At present, history usage is often more verbose than the line I want to replay. I have to:
history --grep ...
history -s N --replay
In the interactive node shell, you can start typing a line, and on Up/Down it shows only the history lines that start with the typed string. Implementing such history filter in psysh would very convenient.
The text was updated successfully, but these errors were encountered:
interactive functionality like this is mostly implemented by readline or libedit, which psysh uses for input under the hood. the history command in psysh is a convenience utility on top of readline.
At present, history usage is often more verbose than the line I want to replay. I have to:
In the interactive
node
shell, you can start typing a line, and onUp
/Down
it shows only the history lines that start with the typed string. Implementing such history filter inpsysh
would very convenient.The text was updated successfully, but these errors were encountered: