What is the problem this feature will solve?
In REPL, say if I were to paste a block of code like:
function* naturals() {
let i = 0;
while (true) {
yield i;
i += 1;
}
}
On up arrow the history will walk line-by-line, but it would be useful it the navigation were to be block-by-block?
What is the feature you are proposing to solve the problem?
On up/down arrow while navigating REPL history, move in blocks instead of line.
What alternatives have you considered?
No response
What is the problem this feature will solve?
In REPL, say if I were to paste a block of code like:
On up arrow the history will walk line-by-line, but it would be useful it the navigation were to be block-by-block?
What is the feature you are proposing to solve the problem?
On up/down arrow while navigating REPL history, move in blocks instead of line.
What alternatives have you considered?
No response