You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
excerpt: Today, we're introducing a new shell, written in Rust. It draws inspiration from the classic Unix philosophy of pipelines, the structured data approach of PowerShell, functional programming, systems programming, and more.
7
7
---
8
8
@@ -12,7 +12,7 @@ Today, we're introducing a new shell, written in Rust. It draws inspiration from
12
12
13
13
It's called Nushell, or just Nu for short. We have a [book](https://book.nushell.sh/en) (¡también se habla [Español](https://book.nushell.sh/es)!). We have a [repo](https://github.com/nushell/nushell).
14
14
15
-
This release was made by Jonathan Turner (me), Yehuda Katz, and Andrés Robalino, with contributions from Odin Dutton.
15
+
This release was made by Sophia Turner (me), Yehuda Katz, and Andrés Robalino, with contributions from Odin Dutton.
16
16
17
17

18
18
@@ -139,31 +139,31 @@ Or maybe we want to work with the native `ls -la`:
excerpt: We're happy to announce that today we're releasing Nushell 0.3.0. Nu has seen numerous bugfixes, performance improvements, and features added since its initial public release (which was only a few weeks ago!)
7
7
---
8
8
@@ -18,7 +18,7 @@ Nu 0.3.0 is available as [pre-built binaries](https://github.com/nushell/nushell
18
18
19
19
# What's new
20
20
21
-
## New table design (Porges, jonathandturner)
21
+
## New table design (Porges, sophiajt)
22
22
23
23

24
24
@@ -32,11 +32,11 @@ The table is also configurable. If you feel like the table is a bit too heavy, y
32
32
> config --set [table_mode light]
33
33
```
34
34
35
-
## New file formats (pmeredit, est31, andrasio, jonathandturner)
35
+
## New file formats (pmeredit, est31, andrasio, sophiajt)
36
36
37
37
Nu now natively supports new file formats, including: bson, tsv, sqlite, and url-encoded strings.
@@ -63,7 +63,7 @@ Nu now supports `~` to refer to your home directory as part of a path. You can a
63
63
64
64
The shell itself also got a few updates. You can now enable 'vi' mode, if you'd prefer vi-like bindings (by running `config --set [edit_mode vi]`). On non-Windows platforms, you can also use Ctrl-R to enable Sublime-style history searching (we're hoping to enable Windows support for this soon).
excerpt: Today we're happy to announce the 0.4.0 release of Nushell. The 0.4.0 marks a continually maturing shell that is now starting to show signs of stability. And, of course, a few fun features along the way.
7
7
---
8
8
@@ -25,7 +25,7 @@ New colors!
25
25
26
26
With 0.4.0, we're adding some new colors to show off different types of the command, where errors might be happening, and if the command is internal or external. The coloring is just the tip of the iceberg, as it were, and builds from a reworking of the parser to make it more accurate, more stable, and more feature-complete.
27
27
28
-
## Streaming table (jonathandturner)
28
+
## Streaming table (sophiajt)
29
29
30
30

31
31
Streaming tables
@@ -34,7 +34,7 @@ Up to this point, we've taken a few shortcuts with how streams worked in Nushell
34
34
35
35
With the 0.4.0, we're taking a big step in the direction of full support for streams. You'll see that now data will start being printed as it becomes available, with tables printing pages of 50 rows at a time (by default). This allows you to get deep listings of files (eg using `ls **`), work with streams from external sources, and more.
36
36
37
-
## Better ctrl-c support (jonathandturner, landaire)
37
+
## Better ctrl-c support (sophiajt, landaire)
38
38
39
39
As part of having streams of tables, it's always helpful to be able to say "stop!" when you need to. With 0.4.0, using ctrl-c to stop the output should be a lot more responsive and will take you back to the prompt.
40
40
@@ -64,7 +64,7 @@ We're continuing to evolve our support for matching string data. Recently, we be
64
64
65
65
Happy hacktoberfest! Lots of people wanted to jump in and help document all of our commands, help fix docs that are already there, and generally give things a bit of polish. Much appreciated everyone who came by and contributed.
0 commit comments