key-binding: set BIND_ACTION_KEY_COUNT correctly

When the new promp-prev/next bindings were added, we forgot to update
BIND_ACTION_KEY_COUNT to reflect this.
This commit is contained in:
Daniel Eklöf 2022-06-17 18:42:42 +02:00
parent bdb79e8b9f
commit 8689389523
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -48,7 +48,7 @@ enum bind_action_normal {
BIND_ACTION_SELECT_WORD_WS,
BIND_ACTION_SELECT_ROW,
BIND_ACTION_KEY_COUNT = BIND_ACTION_TEXT_BINDING + 1,
BIND_ACTION_KEY_COUNT = BIND_ACTION_PROMPT_NEXT + 1,
BIND_ACTION_COUNT = BIND_ACTION_SELECT_ROW + 1,
};