Skip to content

Commit

Permalink
add pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
toshi-pono committed Mar 27, 2022
1 parent ce95a64 commit 8002c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/imk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ extern "C" fn input_text(_this: &Object, _cmd: Sel, text: id, sender: id) -> BOO
fn convert(text: &str) -> Option<String> {
let mut rng = rand::thread_rng();
let mut outs = HashMap::new();
outs.insert("l", vec!["l", "I"]);
outs.insert("l", vec!["l", "I", "|"]);
outs.insert("1", vec!["l", "1", "I"]);
outs.insert("I", vec!["l", "I"]);
outs.insert("I", vec!["l", "I", "|"]);
outs.insert("O", vec!["O", "0"]);
outs.insert("0", vec!["O", "0"]);
outs.insert(" ", vec![" ", " "]);
Expand Down

0 comments on commit 8002c73

Please sign in to comment.