diff options
author | Blaž Hrastnik | 2021-04-06 10:45:14 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-04-06 10:51:15 +0000 |
commit | 0e9ecccfc12f4972360b516bd56222894f315d58 (patch) | |
tree | 0a9444cfab3f072995f823037be7558fa4c41572 /helix-term/src/ui | |
parent | 91462af546619740c93181b88a7908e481e6d6ab (diff) |
clippy: Drop or-patterns for now because they're not on stable rust yet
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/prompt.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index 3588853e..04108d79 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -182,7 +182,11 @@ impl Component for Prompt { // char or shift char KeyEvent { code: KeyCode::Char(c), - modifiers: KeyModifiers::NONE | KeyModifiers::SHIFT, + modifiers: KeyModifiers::NONE, + } + | KeyEvent { + code: KeyCode::Char(c), + modifiers: KeyModifiers::SHIFT, } => { self.insert_char(c); (self.callback_fn)(cx.editor, &self.line, PromptEvent::Update); |