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
i believe there's some misconfiguration in the REPL's "readline" library that causes the following odd behavior:
>>> "hi" < "hello"
Runtime Error: Operands must be numbers
[line 1]
>>> !"hi"
>>> "hi" < "hello"
Runtime Error: Operands must be numbers
[line 1]
notice how upon pressing ENTER the !"hi" expression gets automatically expanded to the last command/expression instead of being evaluated normally.
the same issue is present when pressing TAB, although in this case the behavior is just fine, as TAB is often used for autocompletion commands in many apps.
The text was updated successfully, but these errors were encountered:
i believe there's some misconfiguration in the REPL's "readline" library that causes the following odd behavior:
notice how upon pressing
ENTER
the!"hi"
expression gets automatically expanded to the last command/expression instead of being evaluated normally.the same issue is present when pressing
TAB
, although in this case the behavior is just fine, asTAB
is often used for autocompletion commands in many apps.The text was updated successfully, but these errors were encountered: