mirror of
https://github.com/nushell/nushell.git
synced 2025-05-24 00:21:17 +00:00
# Description This PR adds the ability to set metadata. This is especially useful for activating LS_COLORS when using table literals.  You can also set the filepath metadata, although I'm not really user how useful this is. We may end up removing this option entirely. ```nushell ❯ "crates" | metadata set --datasource-filepath $'(pwd)/crates' | metadata ╭────────┬───────────────────────────────────╮ │ source │ /Users/fdncred/src/nushell/crates │ ╰────────┴───────────────────────────────────╯ ``` No file paths are checked. You could also do this. ```nushell ❯ "crates" | metadata set --datasource-filepath $'a/b/c/d/crates' | metadata ╭────────┬────────────────╮ │ source │ a/b/c/d/crates │ ╰────────┴────────────────╯ ``` The command name and parameter names are still WIP. We could change them. There are currently 3 kinds of metadata in nushell. ```rust pub enum DataSource { Ls, HtmlThemes, FilePath(PathBuf), } ``` I've skipped adding `HtmlThemes` because it seems to be specific to our `to html` command only.
30 lines
577 B
Rust
30 lines
577 B
Rust
mod ast;
|
|
mod debug_;
|
|
mod explain;
|
|
mod info;
|
|
mod inspect;
|
|
mod inspect_table;
|
|
mod metadata;
|
|
mod metadata_set;
|
|
mod profile;
|
|
mod timeit;
|
|
mod view;
|
|
mod view_files;
|
|
mod view_source;
|
|
mod view_span;
|
|
|
|
pub use ast::Ast;
|
|
pub use debug_::Debug;
|
|
pub use explain::Explain;
|
|
pub use info::DebugInfo;
|
|
pub use inspect::Inspect;
|
|
pub use inspect_table::build_table;
|
|
pub use metadata::Metadata;
|
|
pub use metadata_set::MetadataSet;
|
|
pub use profile::DebugProfile;
|
|
pub use timeit::TimeIt;
|
|
pub use view::View;
|
|
pub use view_files::ViewFiles;
|
|
pub use view_source::ViewSource;
|
|
pub use view_span::ViewSpan;
|