summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste-2.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixed -Xfuture 5.ds, deprecated 0-octal.Paul Phillips2011-11-291-1/+1
| | | | | | | | I messed up my trip to the future the first time around; now in the future 5.f is not an error but an attempt to call method "f" on 5 like nature intended. (Thank you simon for catching this.) And deprecated leading 0 for octal. Closes SI-5205.
* The beautification of repl pasting had the prob...Paul Phillips2011-04-061-7/+10
| | | | | | | The beautification of repl pasting had the problem that the new beautiful output was not itself pastable. Now I have achieved "paste idempotence". No review.
* Various chronic annoyances with the repl addres...Paul Phillips2011-03-151-0/+28
Various chronic annoyances with the repl addressed. Much improved transcript pasting. Now goes back in time to fix the transcript if it contains self-referential "res0, res1" etc. so that it works as it originally did. Shows which commands it is running, and places the commands with their result in a manner suitable for framing. Also, a new :paste command which accepts input up to ctrl-D, so you can enter companions without gyrations, or code from people who write in a repl unfriendly fashion by putting their curly braces on the next line (I'm looking at you mark harrah) or you name it, it's not picky. No review.