Skip to content

Commit

Permalink
Support key renaming via KEY tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarzik committed Feb 17, 2024
1 parent e0dae93 commit e21ddcd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,11 @@ impl Pcc {
self.aliases.insert(val.to_string(), ident.clone());
}

"KEY" => {
println!("KEY: {}={}", val, ident);
ident = val.to_string();
}

_ => {}
}
}
Expand Down

0 comments on commit e21ddcd

Please sign in to comment.