aboutsummaryrefslogtreecommitdiff
path: root/tests/test-org-reveal-config-keymap.el
Commit message (Collapse)AuthorAgeFilesLines
* fix(org-reveal-config): register presentation keys via prefix mapCraig Jennings4 days1-0/+38
The seven presentation commands were bound with raw global-set-key on "C-; p ..." chains. That only works once keybindings.el has made "C-;" a live prefix. Otherwise each binding errors with "non-prefix key". I replaced them with cj/reveal-map registered under "C-; p" via cj/register-prefix-map, matching every sibling and dropping the load-order dependency.