help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Highlight tabulated and trailing whitespace


From: steve-humphreys
Subject: Highlight tabulated and trailing whitespace
Date: Mon, 28 Dec 2020 05:11:06 +0100

I would like to highlight tabulated and trailing whitespace, using the following
code on a dark background.  The highlighting is not working.  I might also be
changing tabs with spaced but do not what command I had used.

(defun whitesp-highlight ()
  "Highlights whitespace."

  (require 'whitespace)
  (setq-local show-trailing-whitespace t)

  (whitespace-mode)
  (setq whitespace-style '(face tabs))
  (modify-face whitespace-tab nil "#000000")

  ;; Highlights tabulator regions
  (setq whitespace-style '(tabs tab-mark))
  (global-whitespace-mode 1) )





reply via email to

[Prev in Thread] Current Thread [Next in Thread]