Skip to content

Commit

Permalink
fix: popper-echo-mode will enable popper-mode automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle0128 committed Nov 6, 2023
1 parent 4cd4aa4 commit acb343a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lisp/init-window.el
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,14 @@

;; Enforce rules for popups
(use-package popper
:diminish (popper-mode popper-echo-mode)
:custom
(popper-group-function #'popper-group-by-directory)
(popper-echo-dispatch-actions t)
:bind (:map popper-mode-map
("C-h z" . popper-toggle)
("C-<tab>" . popper-cycle)
("C-M-<tab>" . popper-toggle-type))
:hook ((emacs-startup . popper-mode)
(popper-mode . popper-echo-mode))
:hook (emacs-startup . popper-echo-mode)
:init
(setq popper-reference-buffers
'("\\*Messages\\*"
Expand Down

0 comments on commit acb343a

Please sign in to comment.