summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2021-05-28 20:32:12 +1000
committerMaxime Coste <mawww@kakoune.org>2021-05-28 20:32:12 +1000
commit95b0627e5491d18c8bba9c1fa60f73d3e93777ec (patch)
tree6f079bb814938c3ad1f4b2ab039b55a45d02c215 /src
parent049b9a28d191285e56c21faa143b4f1a43007b70 (diff)
Fix focus_in/focus_out keys not having user friendly names
Diffstat (limited to 'src')
-rw-r--r--src/keys.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/keys.cc b/src/keys.cc
index b6761584..25466fd3 100644
--- a/src/keys.cc
+++ b/src/keys.cc
@@ -80,6 +80,8 @@ static constexpr KeyAndName keynamemap[] = {
{ "minus", '-' },
{ "semicolon", ';' },
{ "percent", '%' },
+ { "focus_in", Key::FocusIn },
+ { "focus_out", Key::FocusOut },
};
KeyList parse_keys(StringView str)