We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to the instructions...
Or disable the background color completely in your .emacs.d/init.el: (add-hook 'mmm-mode-hook (lambda () (set-face-background 'mmm-default-submode-face nil)))
Or disable the background color completely in your .emacs.d/init.el:
(add-hook 'mmm-mode-hook (lambda () (set-face-background 'mmm-default-submode-face nil)))
However, this does not work for me. I'm using the emacs package provided by Fedora 32, and it happens on a "normal" emacs, and also in spacemacs.
emacs
Fedora 32
spacemacs
$ emacs --version GNU Emacs 27.1 [snip]
$ grep -A3 "default background" ~/.emacs.d/init.el ;; disable ugly default background on vue-mode (add-hook 'mmm-mode-hook (lambda () (set-face-background 'mmm-default-submode-face nil)))
The text was updated successfully, but these errors were encountered:
adding (custom-set-faces '(mmm-default-submode-face ((t (:background nil))))) into private config.el did the tick for me.
(custom-set-faces '(mmm-default-submode-face ((t (:background nil)))))
config.el
Sorry, something went wrong.
Same problem, with emacs 27.1. Replacing mmm-mode-hook with mmm-major-mode-hook solved problem.
mmm-mode-hook
mmm-major-mode-hook
No branches or pull requests
According to the instructions...
However, this does not work for me. I'm using the
emacs
package provided byFedora 32
, and it happens on a "normal"emacs
, and also inspacemacs
.The text was updated successfully, but these errors were encountered: