-
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
Always hide *Mini
buffers?
#239
Comments
As far as I know, mini buffers should be ignored completely. 🤔 |
Thanks, I opened a PR. It's just a suggestion and feel free to modify/close. |
I'm a little confused. Minibuffer shouldn't show up at all. 🤔 I've tried with |
Hi, thanks a lot for checking. I also failed to reproduce it with minimum config (sorry!). Let me find the real issue. |
I dont' know why, but this time I succeeded in reproducing.
(setopt custom-file nil)
(eval-and-compile
(customize-set-variable
'package-archives '( ("melpa" . "https://melpa.org/packages/")))
(package-initialize))
(use-package projectile
:ensure t
:config
(projectile-mode 1))
(use-package centaur-tabs
:ensure t
:config
(centaur-tabs-group-by-projectile-project)
(centaur-tabs-mode t))
|
Currently
*Mini
buffers visibility policy is unclear. It's sometimes visible in the buffers bar, but I guess they should be always hidden? If so, we would need a dedicated buffer group for them (such as "hidden").Current
*Mini
buffer group assignments is as follows:centaur-tabs-buffer-groups
*Mini
buffers are grouped into"Common"
(centaur-tabs-common-group-name
). If you're in a"Common"
group buffer and open a minibuffer, they're visible in the buffer bar.centaur-tabs-projectile-buffer-groups
*Mini
buffers are grouped into the current project (Minibuf-X
appears in Treesitter buffers #238). Minibuffers are always visible in the buffer bar.Note:
centaur-tabs-excluded-prefixes
It hides tab bar in
*Mini
. It doesn't stop*Mini
appearing the tab bar in other buffers.The text was updated successfully, but these errors were encountered: