Browse Source

Fix centaur-tabs hide function

master
Riyyi 5 years ago
parent
commit
0912f077d0
  1. 3
      .emacs.d/config.org

3
.emacs.d/config.org

@ -948,6 +948,7 @@ Functions that only use built-in Emacs functionality.
Functions that use package functionality. Functions that use package functionality.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(with-eval-after-load 'centaur-tabs
(defun centaur-tabs-buffer-groups () (defun centaur-tabs-buffer-groups ()
"Organize tabs into groups by buffer." "Organize tabs into groups by buffer."
(list (list
@ -969,12 +970,14 @@ Functions that use package functionality.
"Completions\\|" "Completions\\|"
"clangd\\|" ; lsp c/c++ "clangd\\|" ; lsp c/c++
"Faces\\|" "Faces\\|"
"Flycheck\\|"
"Help\\|" "Help\\|"
"helpful\\|" "helpful\\|"
"iph\\|" ; lsp php "iph\\|" ; lsp php
"Occur" "Occur"
"\\).*") "\\).*")
name))) name)))
)
(defun dashboard-goto-bookmarks () (defun dashboard-goto-bookmarks ()
"Go to bookmarks." "Go to bookmarks."

Loading…
Cancel
Save