yanghaoxie / which-key-posframe

Let emacs-which-key use posframe to show its popup.
GNU General Public License v3.0
51 stars 10 forks source link

Does not appear with minimal config #2

Closed jsmestad closed 5 years ago

jsmestad commented 5 years ago

I followed the minimum install specified in the README and which-key does not appear. Am I missing anything?

(use-package which-key
  :defer 1
  :delight
  :config
  (setq which-key-sort-order 'which-key-prefix-then-key-order
        which-key-sort-uppercase-first nil
        which-key-add-column-padding 1
        which-key-max-display-columns nil
        which-key-min-display-lines 6
        which-key-side-window-max-width 0.33))
;; (which-key-setup-side-window-right-bottom)
;; (which-key-mode))
(use-package which-key-posframe
  :after which-key
  :quelpa (which-key-posframe :fetcher github :repo "yanghaoxie/which-key-posframe")
  :config
  (setq which-key-posframe-poshandler 'posframe-poshandler-frame-center)
  (which-key-posframe-enable))
yanghaoxie commented 5 years ago

Can you try to manually enable which-key-posframe by using M-x which-key-posframe-enable, and see whether it works?

yanghaoxie commented 5 years ago

Since there is no more information provided, I am going to close this issue, feel free to reopen it if the same issue shows up.