Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | jsre: fix annoying indentation when printing arrays of objects | Felix Lange | 2015-08-16 | 1 | -6/+9 |
| | | | | | | | | | | | | | | The pretty printer, dumb as it is, printed arrays of objects as [{ ... }] With this change, they now print as: [{ ... }] | ||||
* | jsre: bind the pretty printer to "inspect" in JS | Felix Lange | 2015-08-16 | 1 | -0/+8 |
| | |||||
* | cmd/geth, jsre: restore command line editing on windows | Felix Lange | 2015-08-12 | 1 | -0/+220 |
PR #856 broke command line editing by wrapping stdout with a filter that interprets ANSI escape sequences to fix colored printing on windows. Implement the printer in Go instead so it can do its own platform-dependent coloring. As a nice side effect, the JS console is now noticeably more responsive when printing results. Fixes #1608 Fixes #1612 |