all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Changing org-mode footnote face in emacs display
@ 2022-01-14  0:58 fatiparty--- via Users list for the GNU Emacs text editor
  2022-01-14 23:08 ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 2+ messages in thread
From: fatiparty--- via Users list for the GNU Emacs text editor @ 2022-01-14  0:58 UTC (permalink / raw)
  To: Help Gnu Emacs


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

[fn:: Some text here]
  




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Changing org-mode footnote face in emacs display
  2022-01-14  0:58 Changing org-mode footnote face in emacs display fatiparty--- via Users list for the GNU Emacs text editor
@ 2022-01-14 23:08 ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 2+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2022-01-14 23:08 UTC (permalink / raw)
  To: help-gnu-emacs

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




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-14 23:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-14  0:58 Changing org-mode footnote face in emacs display fatiparty--- via Users list for the GNU Emacs text editor
2022-01-14 23:08 ` Emanuel Berg via Users list for the GNU Emacs text editor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.