Darren Schroeder

Results 2074 comments of Darren Schroeder

You can do some of that with these: * turn off color `$env.config.use_ansi_coloring = false` * turn off indexes `$env.config.table.index_mode = "never"` * turn off footer ` $env.config.footer_mode = "never"`...

> both variants don't account for possible footer settings above remove the footer. you have to do all the things I suggested, not just the last one. footer_mode was added...

That's because nushell was not built to do what you're asking. There are 2 options: 1. Like I mentioned above, you could just create a custom command that does everything...

I believe the intent of float_precision is to only be applied in tables. ```nushell ❯ $env.config.float_precision = 1 ❯ 1.23456 | wrap name ╭──────┬─────╮ │ name │ 1.2 │ ╰──────┴─────╯...

This is starting to get a little confusing. What I was agreeing to was that the history file should be in dirs::config_dir() by default unless XDG_CONFIG_HOME was set, maintaining our...

> Renaming it out from under the older, still running Nushell's might be problematic? ya, i'm pretty sure windows could give a sharing violation error.

Right, the history file is in dir::config_dir unless XDG_CONFIG_HOME is set. That's what configurable_dir_path is doing right now in the main branch. I think this PR changes that to dirs::data_dir...

My history file is already in $nu.data-dir. ```nushell ❯ $nu ╭──────────────────────┬────────────────────────────────────────────────────────────────────╮ │ default-config-dir │ /Users/fdncred/Library/Application Support/nushell │ │ config-path │ /Users/fdncred/Library/Application Support/nushell/config.nu │ │ env-path │ /Users/fdncred/Library/Application Support/nushell/env.nu │ │...

It would probably take longer to determine which files these were than to just include them by default the way it is now. I'm not sure if these have different...