Merge pull request #128 from jonvaldes/fix-less-than-key

Fix less than key on linux, simpler version
macos-click-through
Keith Simmons 5 years ago committed by GitHub
commit 6ad31484a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -218,6 +218,12 @@ pub fn append_modifiers(modifiers: ModifiersState, keycode_text: &str, special:
}
};
}
if result == "<" {
special = true;
result = "lt".to_string();
}
if modifiers.ctrl() {
special = true;
result = format!("C-{}", result);

Loading…
Cancel
Save