mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
ea27300ca0
Port into string command
111 lines
2.3 KiB
Rust
111 lines
2.3 KiB
Rust
use nu_protocol::{
|
|
engine::{EngineState, StateWorkingSet},
|
|
Signature,
|
|
};
|
|
|
|
use crate::*;
|
|
|
|
pub fn create_default_context() -> EngineState {
|
|
let mut engine_state = EngineState::new();
|
|
|
|
let delta = {
|
|
let mut working_set = StateWorkingSet::new(&engine_state);
|
|
|
|
macro_rules! bind_command {
|
|
( $command:expr ) => {
|
|
working_set.add_decl(Box::new($command));
|
|
};
|
|
( $( $command:expr ),* ) => {
|
|
$( working_set.add_decl(Box::new($command)); )*
|
|
};
|
|
}
|
|
|
|
// TODO: sort default context items categorically
|
|
bind_command!(
|
|
Alias,
|
|
Benchmark,
|
|
BuildString,
|
|
Cd,
|
|
Cp,
|
|
Date,
|
|
DateFormat,
|
|
DateHumanize,
|
|
DateListTimezones,
|
|
DateNow,
|
|
DateToTable,
|
|
DateToTimezone,
|
|
Def,
|
|
Do,
|
|
Each,
|
|
Echo,
|
|
ExportDef,
|
|
External,
|
|
First,
|
|
For,
|
|
From,
|
|
FromJson,
|
|
Get,
|
|
Griddle,
|
|
Help,
|
|
Hide,
|
|
If,
|
|
Into,
|
|
IntoBinary,
|
|
IntoFilesize,
|
|
IntoInt,
|
|
IntoString,
|
|
Last,
|
|
Length,
|
|
Let,
|
|
LetEnv,
|
|
Lines,
|
|
Ls,
|
|
Math,
|
|
MathAbs,
|
|
MathAvg,
|
|
MathMax,
|
|
MathMin,
|
|
MathProduct,
|
|
MathRound,
|
|
MathSqrt,
|
|
MathSum,
|
|
Mkdir,
|
|
Module,
|
|
Mv,
|
|
ParEach,
|
|
Ps,
|
|
Register,
|
|
Range,
|
|
Rm,
|
|
RunPlugin,
|
|
Select,
|
|
Size,
|
|
Split,
|
|
SplitChars,
|
|
SplitColumn,
|
|
SplitRow,
|
|
Sys,
|
|
Table,
|
|
To,
|
|
ToJson,
|
|
Touch,
|
|
Use,
|
|
Where,
|
|
Wrap,
|
|
Zip
|
|
);
|
|
|
|
// This is a WIP proof of concept
|
|
bind_command!(ListGitBranches, Git, GitCheckout, Source);
|
|
|
|
let sig = Signature::build("exit");
|
|
working_set.add_decl(sig.predeclare());
|
|
|
|
working_set.render()
|
|
};
|
|
|
|
engine_state.merge_delta(delta);
|
|
|
|
engine_state
|
|
}
|