jyp / boon

Ergonomic Command Mode for Emacs
GNU General Public License v3.0
331 stars 35 forks source link

Fix definition of `boon-command-map` #142

Closed dkellner closed 3 months ago

dkellner commented 3 months ago

set-keymap-parent returns the parent keymap, boon-moves-map in this case.

Before this fix, keys not bound in boon-command-map and boon-moves-map ended up calling self-insert-command. I.e. suppress-keymap had no effect.

I've used this a couple of days now and did not observe any unwanted side effects.

jyp commented 3 months ago

Thanks, nice catch!