1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
use crate::poem::Verse;
use std::collections::BTreeMap;
use std::collections::HashMap;
/// alias
///
/// The builtin `alias` command. Used to monikers for other verbs, or entire
/// verses.
///
/// # Shell Example
/// ```sh
/// alias vim=nvim
/// ```
pub fn incant(verse: &Verse, out: &mut Vec<u8>, aliases: &mut HashMap<String, String>) -> i32 {
match verse.clause() {
Some(clause) => {
for stanza in clause {
let (key, val) = match stanza.split_once("=") {
Some((key, val)) => (key, val),
None => continue,
};
aliases.insert(String::from(key), String::from(val));
}
}
None => {
let mut lines = Vec::new();
let sorted: BTreeMap<_, _> = aliases.into_iter().collect();
for (key, val) in sorted {
let line = if key.contains(' ') && val.contains(' ') {
format!("'{}'='{}'", key, val)
} else if key.contains(' ') {
format!("'{}'={}", key, val)
} else if val.contains(' ') {
format!("{}='{}'", key, val)
} else if val.is_empty() {
format!("{}=''", key)
} else {
format!("{}={}", key, val)
};
lines.push(line);
}
if verse.couplet {
*out = format!("{}\n", lines.join("\n")).as_bytes().to_vec();
} else {
println!("{}", lines.join("\n"));
}
}
}
0
}
/// unalias
///
/// The builtin `unalias` command. Used to remove shell monikers, since `alias`
/// may be called with an empty string as the value.
///
/// # Shell Example
/// ```sh
/// unalias vim
/// ```
pub fn unincant(verse: &Verse, aliases: &mut HashMap<String, String>) -> i32 {
match verse.clause() {
Some(clause) => {
for stanza in clause {
aliases.remove(&stanza);
}
}
None => {
eprintln!("unalias: not enough arguments");
return 1;
}
}
0
}
|