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

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

Re: Changing org-mode footnote face in emacs display


From: Emanuel Berg
Subject: Re: Changing org-mode footnote face in emacs display
Date: Sat, 15 Jan 2022 00:08:26 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

fatiparty--- via Users list for the GNU Emacs text editor wrote:

> I am using the org-mode footnote, but want to define
> a different foreground colour, remove the background colour
> and the underline.

Use this - 

(defun what-face (pos)
  (interactive "d")
  (let ((face (or (get-char-property pos 'face)
                  (get-char-property pos 'read-cf-name) )))
    (message (format "%s" (or face "no face!"))) ))

- to find out what face it is.

Then set it as you normally do.

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

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