nushell/crates/nu-cli
Jason Gedge 01dd358a18
Don't emit a newline in autoview. (#1466)
The extra newline character makes it hard to use nu as part of an
external processing pipeline, since the extra character could taint the
results. For example:

```
$ nu -c 'echo test | xxd'
00000000: 7465 7374                                test
```

versus

```
nu -c 'echo test' | xxd
00000000: 7465 7374 0a                             test.
```
2020-03-09 08:18:24 +13:00
..
src Don't emit a newline in autoview. (#1466) 2020-03-09 08:18:24 +13:00
tests Move most of the root package into a subcrate. (#1445) 2020-03-04 13:58:20 -05:00
Cargo.toml Move to bytes/string hybrid codec (#1457) 2020-03-07 05:06:39 +13:00