-
Notifications
You must be signed in to change notification settings - Fork 51
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
hide tabs still can be selected #237
Comments
Hmm... I may have break something. I'll look into it! |
Mr.jcs090218,I have updated package to version 20240726,but the problem still exists.... |
Sorry, I was a little busy recently. I will try to look into it when I have time. 😓 |
thanks for your work Mrjcs090218,I mistakenly thought you had fixed the issue in your July 26 push.I didn't mean to rush you. I hope you can review this issue again when you are not busy |
Sorry for the late reply! Your config looks fine. Can you show me the steps to reproduce this with Thanks! |
Hi! I have a different configuration than @goodboylqs , but I'm having the same problem.
(require 'package)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-when-compile
(require 'use-package))
(setq use-package-always-ensure t
use-package-always-defer t
use-package-expand-minimally t)
(use-package magit)
(use-package evil
:demand t
:hook (after-init . evil-mode))
(use-package centaur-tabs
:demand t
:defines centaur-tabs-excluded-prefixes
:commands (centaur-tabs-mode centaur-tabs-headline-match centaur-tabs-group-by-projectile-project)
:init
(setq centaur-tabs-style "box"
centaur-tabs-height 32
centaur-tabs-set-bar 'under
centaur-tabs-set-icons t
centaur-tabs-show-new-tab-button t
centaur-tabs-set-modified-marker t
centaur-tabs-show-navigation-buttons nil
centaur-tabs-show-count nil
x-underline-at-descent-line t)
:config
(centaur-tabs-mode)
(centaur-tabs-headline-match)
(centaur-tabs-group-by-projectile-project)
(dolist
(excluded-prefixes
'( " *" "*Org Agenda*" "*Org Note*" "*Org Select*" "*Capture*" "*Calendar*" "*Flymake diagnostics" "*Kill Ring*"
"*flycheck-posframe-buffer*" "*Shell Command Output*" "*dashboard*" "*Directory*" "*vterm*" "*compilation*"
"magit:" "magit-" "*vc*"))
(add-to-list 'centaur-tabs-excluded-prefixes excluded-prefixes)))
If you also use the mouse scroll to switch between tabs, some tabs that shouldn't be listed appear, such as the completion minibuffer. Some time ago, when I noticed that this behavior was happening, I tried to roll back some commits and test it again:
I hope this can help. Thanks :) |
I have the same problem with this configuration:
As @luiznux I am on the last commit that work as expected: c720296 My whole config:
Regards |
Mr.ema2159,thanks for your hardworking to create centaur-tabs.Recently I found that the hide tabs use centaur-tabs-forward/backward still can be selected which doesn't happen before,just like buffer eaf in my configuration is hided but it still can be selected use centaur-tabs-forward,it works very well before and my configuration hasn't change all the time.below is my configuration,please let me know if I make something wrong.
The text was updated successfully, but these errors were encountered: