nushell/tests/repl
Douglas 0872e9c3ae
Allow both NU_PLUGIN_DIRS const and env at the same time (#14553)
# Description

Fix #14544 and is also the reciprocal of #14549.

Before: If both a const and env `NU_PLUGIN_DIRS` were defined at the
same time, the env paths would not be used.
After: The directories from `const NU_PLUGIN_DIRS` are searched for a
matching filename, and if not found, `$env.NU_PLUGIN_DIRS` directories
will be searched.

Before: `$env.NU_PLUGIN_DIRS` was unnecessary set both in main() and in
default_env.nu
After: `$env.NU_PLUGIN_DIRS` is only set in main()

Before: `$env.NU_PLUGIN_DIRS` was set to `plugins` in the config
directory
After: `$env.NU_PLUGIN_DIRS` is set to an empty list and `const
NU_PLUGIN_DIRS` is set to the directory above.

Also updates `sample_env.nu` to use the `const`

# User-Facing Changes

Most scenarios should work just fine as there continues to be an
`$env.NU_PLUGIN_DIRS` to append to or override.

However, there is a small chance of a breaking change if someone was
*querying* the old default `$env.NU_PLUGIN_DIRS`.

# Tests + Formatting

- 🟢 `toolkit fmt`
- 🟢 `toolkit clippy`
- 🟢 `toolkit test`
- 🟢 `toolkit test stdlib`

Also updated the `env` tests and added one for the `const`.

# After Submitting

Config doc updates
2024-12-11 11:41:06 -06:00
..
mod.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_bits.rs Fix bits ror/bits rol implementation (#13673) 2024-08-22 21:22:10 +02:00
test_cell_path.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_commandline.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_conditionals.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_config.rs Refactor config updates (#13802) 2024-10-11 18:40:32 +02:00
test_config_path.rs Always populate config record during startup (#14435) 2024-11-27 13:52:47 +08:00
test_converters.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_custom_commands.rs run ensure_flag_arg_type for short flag values (#14074) 2024-10-20 23:12:57 +02:00
test_engine.rs Fix $in in range expressions (#13447) 2024-07-25 18:28:44 +08:00
test_env.rs Allow both NU_PLUGIN_DIRS const and env at the same time (#14553) 2024-12-11 11:41:06 -06:00
test_help.rs Remove superfluous separator when there's no flag description/comment (#14007) 2024-10-05 15:19:26 +02:00
test_hiding.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_ide.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_iteration.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_known_external.rs Make parsing for unknown args in known externals like normal external calls (#13414) 2024-07-21 01:32:36 -07:00
test_math.rs Fix bugs and UB in bit shifting ops (#13663) 2024-08-22 11:54:27 +02:00
test_modules.rs normalize special characters in module names to allow variable access (#14353) 2024-12-05 21:35:15 +08:00
test_parser.rs Revert "For # to start a comment, then it either need to be the first chara…" (#14560) 2024-12-11 07:08:15 -06:00
test_ranges.rs Fix range contains (#14011) 2024-10-22 10:34:41 -05:00
test_regex.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_signatures.rs correctly parse table literals as lists (#14226) 2024-11-06 07:36:56 -06:00
test_spread.rs Improve CellPath display output (#14197) 2024-11-02 10:28:10 -05:00
test_stdlib.rs Improves startup time when using std-lib (#13842) 2024-10-03 06:28:22 -05:00
test_strings.rs Restrict strings beginning with quote should also ending with quote (#13131) 2024-06-28 09:47:12 +08:00
test_table_operations.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00
test_type_check.rs return accurate type errors from blocks/expressions in type unions (#14420) 2024-11-23 13:42:00 -08:00
tests.rs Merged tests to produce a single binary (#12826) 2024-05-13 13:37:53 +00:00