It would be nice if HyREPL cycled through entire forms when looking through the history like IPython instead of just by line. It would make working in the repl a much nicer experience. So pressing up in a case like this:
=> (defn test [name]
... (print "Hello" name))
=>
would get you
=> (defn test [name]
... (print "Hello" name))
=> (defn test [name]
... (print "Hello" name))
and not
=> (defn test [name]
... (print "Hello" name))
=> (defn test [name]
It would be nice if
HyREPLcycled through entire forms when looking through the history likeIPythoninstead of just by line. It would make working in the repl a much nicer experience. So pressing up in a case like this:would get you
and not