1
0
mirror of https://github.com/helix-editor/helix synced 2024-09-21 00:34:57 +02:00

Save space by having the command hashmap use const static refs.

This commit is contained in:
Blaž Hrastnik 2021-05-07 17:13:26 +09:00
parent dbeae43fbe
commit 87e7a0de3f

View File

@ -905,13 +905,13 @@ mod cmd {
},
];
pub static COMMANDS: Lazy<HashMap<&'static str, Command>> = Lazy::new(|| {
pub static COMMANDS: Lazy<HashMap<&'static str, &'static Command>> = Lazy::new(|| {
let mut map = HashMap::new();
for cmd in COMMAND_LIST {
map.insert(cmd.name, cmd.clone());
map.insert(cmd.name, cmd);
if let Some(alias) = cmd.alias {
map.insert(alias, cmd.clone());
map.insert(alias, cmd);
}
}