summaryrefslogtreecommitdiffstats
path: root/src/command/panel_input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/panel_input.rs')
-rw-r--r--src/command/panel_input.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/panel_input.rs b/src/command/panel_input.rs
index c49244f..192645c 100644
--- a/src/command/panel_input.rs
+++ b/src/command/panel_input.rs
@@ -306,7 +306,8 @@ impl PanelInput {
return Command::from_parts(parts, true);
}
- if key == key!('?') && (raw.is_empty() || parts.verb_invocation.is_some()) {
+ if (key == key!('?') || key == key!(shift-'?'))
+ && (raw.is_empty() || parts.verb_invocation.is_some()) {
// a '?' opens the help when it's the first char
// or when it's part of the verb invocation
return Command::Internal {