Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • I am not sure what you mean. Of course, after placing code in dotspacemacs/user-config you should reload your dotfile using SPC f e R, or alternatively restart Spacemacs. Do you mean it did not work even after restarting Spacemacs? Commented May 6, 2023 at 9:33
  • Yes...sorry... the config does not load after restart. Only when I do SPC f e R Commented May 6, 2023 at 10:32
  • As loading works correctly after using SPC f e R, I guess your init file loads successfully, incl. the user-config and user-init sections. So I guess your elfeed-search-print-entry-function variable gets redefined when starting and (auto)loading elfeed. Please, after restarting Spacemacs, check the value of elfeed-search-print-entry-function before starting and after starting 'elfeed'. If they are different then wrap your setq form as follows (with-eval-after-load 'elfeed-search (setq elfeed-search-print-entry-function #'my-search-print-fn)). Commented May 6, 2023 at 11:50