nushell/crates/nu-explore/src/commands
Devyn Cairns f65bc97a54
Update config directly at assignment (#13332)
# Description

Allows `Stack` to have a modified local `Config`, which is updated
immediately when `$env.config` is assigned to. This means that even
within a script, commands that come after `$env.config` changes will
always see those changes in `Stack::get_config()`.

Also fixed a lot of cases where `engine_state.get_config()` was used
even when `Stack` was available.

Closes #13324.

# User-Facing Changes
- Config changes apply immediately after the assignment is executed,
rather than whenever config is read by a command that needs it.
- Potentially slower performance when executing a lot of lines that
change `$env.config` one after another. Recommended to get `$env.config`
into a `mut` variable first and do modifications, then assign it back.
- Much faster performance when executing a script that made
modifications to `$env.config`, as the changes are only parsed once.

# Tests + Formatting
All passing.

# After Submitting
- [ ] release notes
2024-07-11 06:09:33 -07:00
..
expand.rs Update config directly at assignment (#13332) 2024-07-11 06:09:33 -07:00
help.rs explore: pass config to views at creation time (#13312) 2024-07-07 08:09:59 -05:00
mod.rs explore: pass config to views at creation time (#13312) 2024-07-07 08:09:59 -05:00
nu.rs explore: pass config to views at creation time (#13312) 2024-07-07 08:09:59 -05:00
quit.rs explore: adopt anyhow, support CustomValue, remove help system (#12692) 2024-05-01 17:34:37 -05:00
table.rs explore: pass config to views at creation time (#13312) 2024-07-07 08:09:59 -05:00
try.rs explore: pass config to views at creation time (#13312) 2024-07-07 08:09:59 -05:00