aboutsummaryrefslogtreecommitdiff
path: root/lib/Daffm/Action/Keymap.hs
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-11-07 11:49:27 +0530
committerAkshay Nair <phenax5@gmail.com>2025-11-07 11:49:27 +0530
commit6c3f7442b92f2fbf2308d93ece448cf3dd759a58 (patch)
treef05287259e7da168355fa3798e80079f6dda1087 /lib/Daffm/Action/Keymap.hs
parent0e4a7e45357e6024586b6042c1f4c173926a2ace (diff)
downloaddaffm-6c3f7442b92f2fbf2308d93ece448cf3dd759a58.tar.gz
daffm-6c3f7442b92f2fbf2308d93ece448cf3dd759a58.zip
Add custom commands
Diffstat (limited to '')
-rw-r--r--lib/Daffm/Action/Keymap.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Daffm/Action/Keymap.hs b/lib/Daffm/Action/Keymap.hs
index 4463446..c3079c9 100644
--- a/lib/Daffm/Action/Keymap.hs
+++ b/lib/Daffm/Action/Keymap.hs
@@ -11,7 +11,7 @@ processKeySequence = do
let match = matchKeySequence stateKeyMap stateKeySequence
case match of
MatchSuccess cmd -> do
- processCommand cmd
+ processCommand cmd ""
modify (\st -> st {stateKeySequence = []})
MatchPartial -> pure ()
MatchFailure -> do