We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb6f36 commit a576096Copy full SHA for a576096
src/layouts/no105.rs
@@ -177,6 +177,17 @@ impl KeyboardLayout for No105Key {
177
DecodedKey::Unicode('æ')
178
}
179
180
+ KeyCode::M => {
181
+ if map_to_unicode && modifiers.is_ctrl() {
182
+ DecodedKey::Unicode('\u{000D}')
183
+ } else if modifiers.is_altgr() {
184
+ DecodedKey::Unicode('µ')
185
+ } else if modifiers.is_caps() {
186
+ DecodedKey::Unicode('M')
187
+ } else {
188
+ DecodedKey::Unicode('m')
189
+ }
190
191
KeyCode::OemComma => {
192
if modifiers.is_shifted() {
193
DecodedKey::Unicode(';')
0 commit comments