summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 9d471db3..04789f73 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -1054,11 +1054,11 @@ public:
{
on_next_key_with_autoinfo(context(), KeymapMode::None,
[this](Key key, Context&) {
- if (key == 'f')
+ if (key.key == 'f')
m_completer.explicit_file_complete();
- if (key == 'w')
+ if (key.key == 'w')
m_completer.explicit_word_complete();
- if (key == 'l')
+ if (key.key == 'l')
m_completer.explicit_line_complete();
}, "Complete",
" Enter completion type:\n"