suprematic / ascent.repl

ClojureScript REPL for Chrome DevTools
39 stars 1 forks source link

Input history is inconsistent #3

Open erikcw opened 9 years ago

erikcw commented 9 years ago

Using the "up" arrow to access the command history repeatedly yields inconsistent results.

For example, enter the following at the promt

1 [enter]
2 [enter]
3 [enter]
4 [enter]

[up arrow] => 4 [enter]
[up arrow] => 3 [enter]
[up arrow] => 3 [enter]
[up arrow] => 4 [enter]
[up arrow] => 4 [enter]
[up arrow] => 3 [enter]

The up arrow should return 4 each time, since that was the last form evaluated. Not sure why it keeps skipping back and forth between the values...

aav commented 9 years ago

thank you for the comment. both issues (this one and scrolling) are known and already fixed. once I will make a next big release they will be corrected.

erikcw commented 8 years ago

@aav Any plans for a fresh release?