-
Notifications
You must be signed in to change notification settings - Fork 22
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
Disable centaur-tags when popper popup is active? #32
Comments
What are centaur-tags? A google search didn't give me anything relevant beyond the github page for centaur-emacs.
|
@karthink https://github.com/ema2159/centaur-tabs |
Can you try adding this function instead? (defun centaur-tabs-local-off ()
(centaur-tabs-local-mode 0))
=> |
thanks. I have added this :hook ((popper-open-popup-hook . centaur-tabs-local-off))
:config
(defun centaur-tabs-local-off ()
(centaur-tabs-local-mode 0)) It's also not working as expected as I can see centaur-tabs applied to popper buffers |
I misunderstood what (defun centaur-tabs-local-on ()
(centaur-tabs-local-mode 1) You can add this to |
@karthink I tried following, but it's not working (use-package
popper
:ensure t
:bind (("C-`" . popper-toggle-latest)
("M-`" . popper-cycle)
("C-M-`" . popper-toggle-type))
:hook (
(popper-open-popup-hook . centaur-tabs-local-off)
(vterm-mode-hook . centaur-tabs-local-off)
)
:config
(defun centaur-tabs-local-off ()
(centaur-tabs-local-mode 1))
:init
(setq popper-reference-buffers '("eshell*"
"shell*"
"vterm"
"*SQL"
"*exunit-compilation*"
help-mode
compilation-mode))
(popper-mode +1)
(popper-echo-mode +1)) I also tried with both |
Any way to disable centaur-tabs when popper popup is active? thanks
The text was updated successfully, but these errors were encountered: