Douglas
Douglas
Not really a regression - It's pretty much "as designed" since the `banner` command is intended to be run by Nushell itself at the very end of the startup, thus...
If your goal is to display the Nushell banner (sans startup-time), then some other information from your config, then (optionally) the startup-time - I can think of a way to...
> Splitting on newline is not always an option. It sounds like you might be running into this in the real-world, so can you provide an example of a tool...
This was documented in https://github.com/nushell/nushell.github.io/pull/962 (Thanks @tminich!) Leaving the `unhelpful error` issue open, but removing `documentation` label.
Note that Fish abbreviations only expand when they are at the beginning of a line. Global abbreviations, that can be expanded anywhere in the command-line, are still on their radar....
Also, a neat abbreviation feature thought: Placeholder for the caret position after expansion. Something like: ``` abbr --placeholder "{}" reduceint "reduce -f 0 {|it,acc| {}}" ``` Typing `[ 1 2...
My opinion is that this shouldn't be placed behind an environment variable, but rather that we should fix #7442 to load *all* (non-login) config files when the `--interactive (-i)` flag...
Note that this appears to be the case for all `std` commands that use the `ansi` command in their output. For example, `std/help` does not respect `use_ansi_coloring: false` either. I'm...
Likewise, it might be okay to punt on the prompt here (?), since the user can also override it in the config and use an `ansi strip` there. It's the...
Oh, final point - Related issue - `banner` also doesn't respect the `$env.color_config`, so it's entirely possible for the text to be illegible depending on the theme/color_config. That might warrant...