legacy-dotfiles/.emacs.d/slash_functions.el

5 lines
231 B
EmacsLisp
Raw Normal View History

(defun what-face (pos)
(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))))