[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/modus-operandi-theme 8414a5d 86/99: Unquote face symbol
From: |
Stefan Monnier |
Subject: |
[elpa] externals/modus-operandi-theme 8414a5d 86/99: Unquote face symbols in 'org-src-block-faces' |
Date: |
Fri, 31 Jul 2020 09:25:31 -0400 (EDT) |
branch: externals/modus-operandi-theme
commit 8414a5df51bd792efd8657bb4daf41ebd771bc03
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Unquote face symbols in 'org-src-block-faces'
This is an attempt to address issue 65:
https://gitlab.com/protesilaos/modus-themes/-/issues/65
---
modus-operandi-theme.el | 36 ++++++++++++++++++------------------
modus-vivendi-theme.el | 36 ++++++++++++++++++------------------
2 files changed, 36 insertions(+), 36 deletions(-)
diff --git a/modus-operandi-theme.el b/modus-operandi-theme.el
index da81bdc..94ce2e2 100644
--- a/modus-operandi-theme.el
+++ b/modus-operandi-theme.el
@@ -3897,24 +3897,24 @@ Also bind `class' to ((class color) (min-colors 89))."
(custom-theme-set-variables
'modus-operandi
`(org-src-block-faces ; TODO this list should be expanded
- `(("emacs-lisp" 'modus-theme-nuanced-magenta)
- ("elisp" 'modus-theme-nuanced-magenta)
- ("clojure" 'modus-theme-nuanced-magenta)
- ("clojurescript" 'modus-theme-nuanced-magenta)
- ("c" 'modus-theme-nuanced-blue)
- ("c++" 'modus-theme-nuanced-blue)
- ("sh" 'modus-theme-nuanced-green)
- ("shell" 'modus-theme-nuanced-green)
- ("html" 'modus-theme-nuanced-yellow)
- ("xml" 'modus-theme-nuanced-yellow)
- ("css" 'modus-theme-nuanced-red)
- ("scss" 'modus-theme-nuanced-red)
- ("python" 'modus-theme-nuanced-green)
- ("ipython" 'modus-theme-nuanced-magenta)
- ("r" 'modus-theme-nuanced-cyan)
- ("yaml" 'modus-theme-nuanced-cyan)
- ("docker" 'modus-theme-nuanced-cyan)
- ("json" 'modus-theme-nuanced-cyan))))))
+ `(("emacs-lisp" modus-theme-nuanced-magenta)
+ ("elisp" modus-theme-nuanced-magenta)
+ ("clojure" modus-theme-nuanced-magenta)
+ ("clojurescript" modus-theme-nuanced-magenta)
+ ("c" modus-theme-nuanced-blue)
+ ("c++" modus-theme-nuanced-blue)
+ ("sh" modus-theme-nuanced-green)
+ ("shell" modus-theme-nuanced-green)
+ ("html" modus-theme-nuanced-yellow)
+ ("xml" modus-theme-nuanced-yellow)
+ ("css" modus-theme-nuanced-red)
+ ("scss" modus-theme-nuanced-red)
+ ("python" modus-theme-nuanced-green)
+ ("ipython" modus-theme-nuanced-magenta)
+ ("r" modus-theme-nuanced-cyan)
+ ("yaml" modus-theme-nuanced-cyan)
+ ("docker" modus-theme-nuanced-cyan)
+ ("json" modus-theme-nuanced-cyan))))))
;;; library provides
;;;###autoload
diff --git a/modus-vivendi-theme.el b/modus-vivendi-theme.el
index 4436b16..6dc5c9a 100644
--- a/modus-vivendi-theme.el
+++ b/modus-vivendi-theme.el
@@ -3897,24 +3897,24 @@ Also bind `class' to ((class color) (min-colors 89))."
(custom-theme-set-variables
'modus-vivendi
`(org-src-block-faces ; TODO this list should be expanded
- `(("emacs-lisp" 'modus-theme-nuanced-magenta)
- ("elisp" 'modus-theme-nuanced-magenta)
- ("clojure" 'modus-theme-nuanced-magenta)
- ("clojurescript" 'modus-theme-nuanced-magenta)
- ("c" 'modus-theme-nuanced-blue)
- ("c++" 'modus-theme-nuanced-blue)
- ("sh" 'modus-theme-nuanced-green)
- ("shell" 'modus-theme-nuanced-green)
- ("html" 'modus-theme-nuanced-yellow)
- ("xml" 'modus-theme-nuanced-yellow)
- ("css" 'modus-theme-nuanced-red)
- ("scss" 'modus-theme-nuanced-red)
- ("python" 'modus-theme-nuanced-green)
- ("ipython" 'modus-theme-nuanced-magenta)
- ("r" 'modus-theme-nuanced-cyan)
- ("yaml" 'modus-theme-nuanced-cyan)
- ("docker" 'modus-theme-nuanced-cyan)
- ("json" 'modus-theme-nuanced-cyan))))))
+ `(("emacs-lisp" modus-theme-nuanced-magenta)
+ ("elisp" modus-theme-nuanced-magenta)
+ ("clojure" modus-theme-nuanced-magenta)
+ ("clojurescript" modus-theme-nuanced-magenta)
+ ("c" modus-theme-nuanced-blue)
+ ("c++" modus-theme-nuanced-blue)
+ ("sh" modus-theme-nuanced-green)
+ ("shell" modus-theme-nuanced-green)
+ ("html" modus-theme-nuanced-yellow)
+ ("xml" modus-theme-nuanced-yellow)
+ ("css" modus-theme-nuanced-red)
+ ("scss" modus-theme-nuanced-red)
+ ("python" modus-theme-nuanced-green)
+ ("ipython" modus-theme-nuanced-magenta)
+ ("r" modus-theme-nuanced-cyan)
+ ("yaml" modus-theme-nuanced-cyan)
+ ("docker" modus-theme-nuanced-cyan)
+ ("json" modus-theme-nuanced-cyan))))))
;;; library provides
;;;###autoload
- [elpa] externals/modus-operandi-theme 1cf8571 53/99: Add support for ESHELL-PROMPT-EXTRAS, (continued)
- [elpa] externals/modus-operandi-theme 1cf8571 53/99: Add support for ESHELL-PROMPT-EXTRAS, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme e32ca7d 37/99: Refine Org block beg/end line conditional styles, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 34eeaa8 40/99: Tweak 'secondary-selection' face, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 362f626 48/99: Remove now-outdated README note, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 16ad838 59/99: Tweak keycast for when "3D modeline" option is 't', Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 89f94d5 67/99: Add link for more font- and writing- related confs, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 3306e4b 64/99: Amend adeee9f73:Normalise luminance of nuanced bgs, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 3f18a36 72/99: RENAME CUSTOM OPTION for variable-pitch headings, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 099fe43 78/99: Revert commit 94e113878, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 1e466e0 80/99: Modus Operandi: fix bad var from commit d8986b791, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 8414a5d 86/99: Unquote face symbols in 'org-src-block-faces',
Stefan Monnier <=
- [elpa] externals/modus-operandi-theme b8c3d0f 83/99: Use new symbol for variable-pitch headings option, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 5166bc0 92/99: Add org-quote background for "org blocks" option, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme da76787 96/99: Minor refinements for BONGO, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 643298e 99/99: Merge branch 'master' into local branch, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme ea85175 87/99: New custom option for intense hl-line, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme 15d045b 89/99: Internal: add custom ids for headings in README, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme e3ce274 91/99: Add support for DICTIONARY, Stefan Monnier, 2020/07/31
- [elpa] externals/modus-operandi-theme a339d41 97/99: New CUSTOM OPTION for intense paren matching, Stefan Monnier, 2020/07/31