You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The hard-coded solution (referred to in my previous issue) works for opening files from within Aquamacs, but not for files opened from Finder.app (with Aquamacs being opened in conjunction therewith). The tabs are mostly grey, except for a few after they have been modified. I've tried to also set the custom variables inside the init.el, but that doesn't seem to work either. I checked the tabbar.el just in case that was causing it, and I only found a few colors there, and changing them didn't affect anything. These are the variables in the init, which mirrors the hard-coded portion of aquamacs-tabbar.el (referred to in the previous issue):
The hard-coded solution (referred to in my previous issue) works for opening files from within Aquamacs, but not for files opened from Finder.app (with Aquamacs being opened in conjunction therewith). The tabs are mostly grey, except for a few after they have been modified. I've tried to also set the custom variables inside the init.el, but that doesn't seem to work either. I checked the tabbar.el just in case that was causing it, and I only found a few colors there, and changing them didn't affect anything. These are the variables in the init, which mirrors the hard-coded portion of aquamacs-tabbar.el (referred to in the previous issue):
(custom-set-faces
'(emacs-lisp-mode-default ((t (:height 180 :family "Courier"))) t)
'(latex-mode-default ((t (:height 180 :family "Courier"))) t)
'(plain-tex-mode-default ((t (:height 180 :family "Courier"))) t)
'(fundamental-mode-default ((t (:height 180 :family "Courier"))) t)
'(text-mode-default ((t (:height 180 :family "Courier"))) t)
;; '((cursor-color . "red"))
'(bold ((t (:bold t :underline t))))
'(bold-italic ((t (:bold t :underline t))))
'(font-lock-builtin-face ((t (:bold t :foreground "Red"))))
'(font-lock-comment-face ((t (:bold t :foreground "Firebrick"))))
'(font-lock-constant-face ((t (:bold t :underline t :foreground "Blue"))))
'(font-lock-function-name-face ((t (:bold t :foreground "Blue"))))
'(font-lock-keyword-face ((t (:bold t :foreground "Purple"))))
'(font-lock-string-face ((t (:bold t :foreground "DarkGreen"))))
'(font-lock-type-face ((t (:bold t :foreground "ForestGreen"))))
'(font-lock-variable-name-face ((t (:bold t :foreground "DarkGoldenrod"))))
'(font-lock-warning-face ((t (:bold t :foreground "Red"))))
'(highlight ((t (:background "black" :foreground "white" :bold 1)))) ;; highlight current line
'(info-menu-5 ((t (:underline t :bold t))))
'(info-node ((t (:bold t))))
'(info-xref ((t (:bold t ))))
'(italic ((t (:bold t :underline t))))
'(modeline ((t (:background "black" :foreground "white" :bold 1))))
'(modeline-buffer-id ((t (:background "black" :foreground "white" :bold 1))))
'(modeline-mousable ((t (:background "black" :foreground "white" :bold 1))))
'(modeline-mousable-minor-mode ((t (:background "black" :foreground "white" :bold 1))))
'(region ((t (:background "yellow" :foreground "black" :bold 1)))) ;; highlight selected word
'(secondary-selection ((t (:background "black" :foreground "white" :bold 1))))
'(underline ((t (:bold t :underline t))))
'(tabbar-default ((t (:background "blue" :foreground "orange" :height 140 :width normal :family "Courier"))))
'(tabbar-selected ((t (:background "black" :foreground "green" :box (:line-width 3 :color "black") :weight bold :height 140))))
'(tabbar-unselected ((t (:background "orange" :foreground "black" :box (:line-width 3 :color "orange") :weight bold :height 140))))
'(tabbar-selected-highlight ((t (:background "red" :foreground "black" :box (:line-width 3 :color "red")))))
'(tabbar-unselected-highlight ((t (:background "yellow" :foreground "black" :box (:line-width 3 :color "yellow")))))
'(tabbar-separator ((t (:foreground "black" :height 1.0))))
'(tabbar-selected-modified ((t (:background "black" :foreground "red" :weight bold :height 140))))
'(tabbar-unselected-modified ((t (:foreground "blue" :background "orange" :weight bold :height 140))))
'(tabbar-key-binding ((t (:foreground "white"))))
'(tabbar-button-highlight ((t (:foreground "orange"))))
'(tabbar-highlight ((t (:foreground "red" :underline t))))
)
The text was updated successfully, but these errors were encountered: