Darren Schroeder
Darren Schroeder
I'm really beginning to think that supporting XDG_CONFIG_HOME is a non-starter. Here's why I say that. When I start nushell, where/what does it read in order to know where to...
> I'm AFK, but does nushell not have any system-level env.nu & config.nu files? no > I would say that setting XDG variables is a user problem, not a nushell...
I changed my `/etc/environment` to this below but the env vars weren't available after I restarted WSL. ``` PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" XVAR1="1" XDG_BLAH="/some/path" ``` Seems like `/etc/profile.d/*.sh` requires the shell to be...
I agree that our plugin system needs some love.
@amtoine Good point. This works too. ```nushell ❯ echo r'"""``""dafssa""``"""' """``""dafssa""``""" ❯ echo r"'''''''```one\ntwo''' (blah)``` ($var)'" '''''''```one\ntwo''' (blah)``` ($var)' ``` Right now the requirement is that the raw string start...
> Feels like we get a lot of what you're looking for with: @jntrnr agreed. the same with single quotes. it's just more verbose, plus using backticks always makes me...
After talking about this, we've decided to close this PR. The best thing about this PR (IMO), that we're going to continue working on, is adding the ability to highlight...
Apparently we never did anything with "the best thing about the PR" nor did we answer hustcer's point. I'd still like to see this added as a QOL improvement.
@hustcer I just learned that this works now ```nushell > let raw = echo `one\ntwo (blah) ($var)` > $raw one\ntwo (blah) ($var) ```
> Raw strings are much needed, would love to see this in the language. Except, can we go all the way and add Rust's `r#` syntax? Reasoning being, the arbitrary...