mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
03c9eaf005
In Nu we have variables (E.g. $var-name) and these contain `Value` types. This means we can bind to variables any structured data and column path syntax (E.g. `$variable.path.to`) allows flexibility for "querying" said structures. Here we offer completions for these. For example, in a Nushell session the variable `$nu` contains environment values among other things. If we wanted to see in the screen some environment variable (say the var `SHELL`) we do: ``` > echo $nu.env.SHELL ``` with completions we can now do: `echo $nu.env.S[\TAB]` and we get suggestions that start at the column path `$nu.env` with vars starting with the letter `S` in this case `SHELL` appears in the suggestions. |
||
---|---|---|
.. | ||
env | ||
evaluate | ||
filesystem | ||
plugin | ||
shell | ||
types | ||
call_info.rs | ||
command_args.rs | ||
config_holder.rs | ||
documentation.rs | ||
evaluation_context.rs | ||
example.rs | ||
from_value.rs | ||
lib.rs | ||
maybe_text_codec.rs | ||
print.rs | ||
script.rs | ||
types.rs | ||
whole_stream_command.rs |