-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix spacemacs-purpose-popwin name #7441
Conversation
Is in. |
@@ -240,5 +240,5 @@ variables are updated instead." | |||
(ad-update 'popwin:create-popup-window))) | |||
(add-hook 'pupo-mode-hook #'pupo/sync-advices) | |||
|
|||
(provide 'purpose-popwin) | |||
(provide 'spacemacs-purpose-popwin) | |||
;;; purpose-popwin.el ends here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed the "ends here" line, and also the very first line in the file ("purpose-popwin.el --- [...]").
@@ -83,11 +83,11 @@ | |||
(add-hook 'purpose-mode-hook #'spacemacs/window-purpose-sync-popwin) | |||
(spacemacs/window-purpose-sync-popwin)))) | |||
|
|||
(defun spacemacs-purpose/init-purpose-popwin () | |||
(defun spacemacs-purpose/init-spacemacs-purpose-popwin () | |||
(use-package spacemacs-purpose-popwin | |||
;; don't load spacemacs-purpose-popwin if popwin is excluded. | |||
;; can't wrap `spacemacs-purpose/init-purpose-popwin' in a top-level `when' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not related to this PR, but while we're at it we can delete these 2 comments as well.
Thanks @bmag, I just pushed those fixes manually. |
#7439