Fuco1 / smartparens

Minor mode for Emacs that deals with parens pairs and tries to be smart about it.
GNU General Public License v3.0
1.84k stars 194 forks source link

Use feature-symbols to find functions for the cheat-sheet #1144

Closed radenling closed 1 year ago

radenling commented 1 year ago

It previously parsed the contents of load-history which made it sensitive to changes to what's in load-history. This fix uses feature-symbols instead (which uses load-history internally) which should be more stable than relying on load-history directly.

Fixes #1096

Fuco1 commented 1 year ago

Thanks for writing this up in a PR!