Bruce Weirdan

Results 291 comments of Bruce Weirdan

There is a workaround: ```nushell r##' print "Running commands from STDIN\n" def cc [] { "command" } cc '## | nu --stdin -c 'nu --stdin -c $"($in)"' ``` outputs ```...

The upstream bug has been fixed in 1.78.0 (the minimum version nushell builds with now). @llagerlof would you mind testing with a fresh nushell version?

Autocompletion for `start` and externals now quotes the filename (with either double quote or backtick).

@Beinsezii I'm on 0.96.0 which is almost a month old.

Works for me on 0.96.1 as well: https://asciinema.org/a/2acDz8fKLFmQkZz7ss1Pxi1LN

Here's my comletion options, just in case: ```console $ $env.config.completions ╭────────────────┬──────────────────────────────────╮ │ case_sensitive │ false │ │ quick │ true │ │ partial │ true │ │ algorithm │ prefix...

If you return `null` from `each while` it stops: ```console $ [1 2 3 ] | each while { touch ($in | into string) ; if $in > 1 {...

The most concise way currently is to use list unpacking: ```nushell [file1 file2 file3] | rm ...$in ```

Currently, it produces: ```console $ [{a: 1}, {b: 2, c: 3}] | drop column ╭───┬────┬────╮ │ # │ b │ c │ ├───┼────┼────┤ │ 0 │ ❎ │ ❎ │...

`split row` streams now: ```console $ http get https://raw.githubusercontent.com/dscape/spell/master/test/resources/big.txt | split row "a" | describe list (stream) ```