diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2023-06-08 08:18:49 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2023-06-08 08:20:19 +0300 |
| commit | ed97726b08e16fe2a54a9aa7a2599dc0ae217ee1 (patch) | |
| tree | 75bc53d1ce1a43ba2672dbc22ffb1199c18c6fc2 /ef-cherie-theme.el | |
| parent | 62723ea02b463ee41d2c5f429f66fc648a319916 (diff) | |
Make whitespace-mode considerably more subtle; add palette mappings
The previous style involved the use of a dim grey background. While
this is good to spot invisible characters quickly, it is bad for users
who want to run 'whitespace-mode' at all times (e.g. for Python which
is space-sensitive).
We thus remove the backgrounds by default but provide the option to
reinstate them via palette overrides (as documented at length in the
manual). To this end, we have new semantic colour mappings for
ordinary negative space and its invisible characters:
- bg-space
- fg-space
- bg-space-err
Diffstat (limited to 'ef-cherie-theme.el')
| -rw-r--r-- | ef-cherie-theme.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ef-cherie-theme.el b/ef-cherie-theme.el index ab2c39a..3e1570f 100644 --- a/ef-cherie-theme.el +++ b/ef-cherie-theme.el @@ -231,6 +231,12 @@ (mail-subject red) (mail-other yellow-warmer) +;;;; Space mappings + + (bg-space unspecified) + (fg-space border) + (bg-space-err bg-yellow-intense) + ;;;; Tab mappings (bg-tab-bar bg-alt) |
