diff options
author | Rory Dudley | 2024-03-30 19:05:23 -0600 |
---|---|---|
committer | Rory Dudley | 2024-03-30 19:05:23 -0600 |
commit | d408624afeb0035217d3d327e21b24a62b803f28 (patch) | |
tree | 891f52eb69f827ca71de157ab67f51606c7b40f0 /src/poem/anthology.rs | |
parent | 491d3fbff384d4b04483b54e5bb78d23bb1181c5 (diff) | |
download | dwarvish-d408624afeb0035217d3d327e21b24a62b803f28.tar.gz |
Add wrapper for global shell environment
Instead of having to pass around a bunch of different data structures
for various shell functions, create the wrapper compose::Environment,
which serves as a global shell state. It is configured via
login/profile/rc scripts initially, but can of course be modified
throughout the lifetime of the shell.
Diffstat (limited to 'src/poem/anthology.rs')
-rw-r--r-- | src/poem/anthology.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/poem/anthology.rs b/src/poem/anthology.rs index b9e747c..f1adae7 100644 --- a/src/poem/anthology.rs +++ b/src/poem/anthology.rs @@ -19,13 +19,13 @@ pub fn lookup(verb: &str) -> Option<usize> { INDEX.iter().position(|v| v.to_string() == verb) } -pub fn incant(verse: &Verse, index: usize, bins: &mut Vec<String>) -> i32 { +pub fn incant(verse: &Verse, index: usize, env: &mut Environment) -> i32 { let verb = INDEX[index]; match verb { "cd" => cd::incant(verse), "exit" => exit::incant(), "export" => export::incant(verse), - "source" => source::incant(verse, bins), + "source" => source::incant(verse, env), _ => unreachable!(), } } |