Closed longminwang closed 2 years ago
Thank you for the report, should be fixed now.
Carsten
On Mon, Aug 15, 2022 at 1:50 AM longminwang @.***> wrote:
You can view, comment on, or merge this pull request online at:
https://github.com/cdominik/cdlatex/pull/45 Commit Summary
- 065d5ab https://github.com/cdominik/cdlatex/pull/45/commits/065d5ab019f90cdcd4ea9ad072a8410ecdaf422e Remove duplicate definition of cdlatex-mode-map
File Changes
(1 file https://github.com/cdominik/cdlatex/pull/45/files)
- M cdlatex.el https://github.com/cdominik/cdlatex/pull/45/files#diff-e7d6aad56320d13941fda339e62731b59891190a2bafbcd2128fe1268c263331 (2)
Patch Links:
— Reply to this email directly, view it on GitHub https://github.com/cdominik/cdlatex/pull/45, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAIABJ7RVPNEKHW5S6MLALVZGA23ANCNFSM56QVAYCA . You are receiving this because you are subscribed to this thread.Message ID: @.***>
Without this fix,
cdlatex-mode
is effectively broken for me, i.e., none of the usual keybindings work. I suspect this is due to some property of elisp evaluation I don't fully understand, but if I activatecdlatex-mode
and then inspect the value ofcdlatex-mode-map
, it's an entirely empty sparse keymap, so it seems that this redundant (but earlier) definition is masking the second, fulsome definition that comes later. Commenting out the lines that this PR removes fixes the problem for me.