1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Rename range to slice (#1014)

Followup for https://github.com/nushell/nushell/pull/14825
This commit is contained in:
Stefan Holderbach 2025-01-17 13:26:29 +01:00 committed by GitHub
parent 1f6ee6c86d
commit fd686c0b0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 29 additions and 29 deletions

View file

@ -8,7 +8,7 @@ export-env {
)
# fnm-prefixed vars
for v in ($pwsh_vars | range 1..) {
for v in ($pwsh_vars | slice 1..) {
$env_vars = ($env_vars | insert $v.key $v.value)
}