1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-06 01:58:16 +02:00
nushell/crates/nu-command/src/filesystem
Devyn Cairns f65bc97a54
Update config directly at assignment ()
# 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 .

# 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
..
cd.rs Path migration 1 () 2024-07-09 17:25:23 +08:00
du.rs Internal representation (IR) compiler and evaluator () 2024-07-10 17:33:59 -07:00
glob.rs Add and use new Signals struct () 2024-07-07 22:29:01 +00:00
ls.rs Internal representation (IR) compiler and evaluator () 2024-07-10 17:33:59 -07:00
mktemp.rs Migrate to a new PWD API () 2024-05-03 14:33:09 +03:00
mod.rs remove old mv command in favor of umv (renamed to mv) () 2024-03-01 09:37:23 +08:00
open.rs Internal representation (IR) compiler and evaluator () 2024-07-10 17:33:59 -07:00
rm.rs Update config directly at assignment () 2024-07-11 06:09:33 -07:00
save.rs Internal representation (IR) compiler and evaluator () 2024-07-10 17:33:59 -07:00
start.rs Add command_prelude module () 2024-03-26 21:17:30 +00:00
touch.rs Fixes - Erroneous example in 'touch' help () 2024-06-07 09:33:48 -05:00
ucp.rs Migrate to a new PWD API () 2024-05-03 14:33:09 +03:00
umkdir.rs Migrate to a new PWD API () 2024-05-03 14:33:09 +03:00
umv.rs Migrate to a new PWD API () 2024-05-03 14:33:09 +03:00
util.rs Internal representation (IR) compiler and evaluator () 2024-07-10 17:33:59 -07:00
watch.rs Add and use new Signals struct () 2024-07-07 22:29:01 +00:00