mirror of
https://github.com/danbulant/nushell
synced 2026-05-21 05:18:42 +00:00
In particular, one thing that we can't (properly) do before this commit is consuming an infinite input stream. For example: ``` yes | grep y | head -n10 ``` will give 10 "y"s in most shells, but blocks indefinitely in nu. This PR resolves that by doing blocking I/O in threads, and reducing the `await` calls we currently have in our pipeline code. |
||
|---|---|---|
| .. | ||
| commands | ||
| fixtures | ||
| format_conversions | ||
| plugins | ||
| shell | ||
| main.rs | ||