Skip to content

Commit e3b9588

Browse files
committed
Fix a bug that prevented using shift to input uppercase letters
1 parent 66aa749 commit e3b9588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/keys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ pub fn any_char() -> Combo<char> {
138138
|key| match key {
139139
KeyEvent {
140140
code: KeyCode::Char(c),
141-
modifiers: KeyModifiers::NONE,
141+
modifiers: KeyModifiers::NONE | KeyModifiers::SHIFT,
142142
} => Some(c),
143143
_ => None,
144144
},

0 commit comments

Comments
 (0)