karthink / repeat-help

GNU General Public License v3.0
25 stars 3 forks source link

`repeat-help-popup-type` initial value depends on package load order #10

Open montchr opened 3 months ago

montchr commented 3 months ago

I have both Embark and Which-Key available in my Emacs session. However, the initial value of repeat-help-popup-type is which-key, not embark as suggested in the README. I assume that is because I load repeat-help before Embark, and repeat-help checks for feature availability when it loads.

As a workaround, I can set the desired value after the corresponding package has loaded (via with-eval-after-load).

karthink commented 3 months ago

Thanks. The featurep check needs to be swapped out for an appropriate fboundp instead. Feel free to PR, it'll be a while before I can get to it.