doomemacs/init/defuns/utility.el

7 lines
282 B
EmacsLisp
Raw Normal View History

2014-09-05 17:08:40 -04:00
(defun what-face (pos)
"Tells you the name of the face (point) is on."
(interactive "d")
(let ((face (or (get-char-property (point) 'read-face-name)
(get-char-property (point) 'face))))
(if face (message "Face: %s" face) (message "No face at %d" pos))))