Sophia J. Turner

Results 61 issues of Sophia J. Turner

We've been using hjson in Nushell, and it's been great. Definitely an improvement to have a more-flexible json format. With the latest Rust 1.48, though, we ran into an issue...

The ability to spawn off workers while you're inside of the terminal is a natural part of working in a shell. One way nu could approach this is to be...

delight

Binary data has some good metadata we could display. For example, mp3 files could show their encoding, length of the track, artist, and album.

enhancement

This fixes the Windows prompt width calculation by using the same width calculation Unix uses. This code might have originally been in place to work around a Windows shortcoming, but...

In nushell, we've been experimenting with adding configurable keybindings. We wanted to set up some configuration, and then call into rustyline using the `bind_sequence` commands, like this: ```rust // add...

question

Is it possible to add lines to the history and tell the history they are lines with errors so that the history hinter doesn't use them? If this isn't possible...

enhancement

### Related problem ``` > [[city size]; [London medium]] | append [NY big] ``` The above currently appends a list to each column, which feels a bit awkward. We should...

:bug: bug

# Description Removes the `env` command, as the `$env` is generally a much better experience. # User-Facing Changes Breaking change: Removes `env`. # Tests + Formatting Don't forget to add...

**Describe the bug** The `takes_rows_of_nu_value_strings_and_pipes_it_to_stdin_of_external` will occasionally fail, only to succeed if you run the test suite again. We should dig into what is causing the occasional failure. **To Reproduce**...

:bug: bug
investigate
tests

The codegen for an if like: ``` if foo() is Some(x) { ... } ``` Will run `foo()` twice, causing the side effects it causes twice. We should only run...