mirror of
https://github.com/nushell/nushell
synced 2025-01-26 11:55:20 +00:00
66023f6243
If you have a `config` variable defined at some point after reading config files, Nushell would print ``` warning: use `$env.config = ...` instead of `let config = ...` ``` I think it's long enough since we've used `$env.config` that we can remove this. Furthermore, it should be printed during `let` parsing because you can end up with a `config` constant after importing a `config` module (that was my case). The warning thus can be misleading. |
||
---|---|---|
.. | ||
tests | ||
command.rs | ||
config_files.rs | ||
ide.rs | ||
logger.rs | ||
main.rs | ||
README.md | ||
run.rs | ||
signals.rs | ||
terminal.rs | ||
test_bins.rs | ||
tests.rs |
Nushell REPL
This directory contains the main Nushell REPL (read eval print loop) as part of the CLI portion of Nushell, which creates the nu
binary itself.
Current versions of the nu
binary will use the Nu argument parsing logic to parse the commandline arguments passed to nu
, leaving the logic here to be a thin layer around what the core libraries.