boon
boon copied to clipboard
The `boon-quit-key` should be bound to `boon-quit` in special state
The boon-quit-key should be bound to boon-quit in special state:
(define-key boon-special-map boon-quit-key #'boon-quit)
I currently have:
(define-key boon-special-map boon-quit-key 'boon-set-command-state)
What's your rationale?
I want to have a quit-key in special buffers, so that I can remove highlights, deactivate marks, etc. With the quit-key bound to boon-set-command-state I often end up in a buffer in command state after pressing the quit-key. I can then switch back to special state by boon-set-insert-like-state, but this is a bit annoying.