-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Description: The logic that decides if a key should be swallowed or passed through.
- Acceptance Criteria:
- Must define
Modeenum (Normal,Insert,Visual,Command) - Must implement
handle_key(key_code, modifiers)function - Must follow this logic: if
ModeisInsertpass through, else ifModeisNormaland the key is (i.e.)h, swallow it - Must implement toggle logic (
i=>Insert,<esc>=>Normal)
- Must define
Reactions are currently unavailable