Skip to content

Instantly share code, notes, and snippets.

@kik
Created September 6, 2014 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kik/842cd822ea21e334ab9a to your computer and use it in GitHub Desktop.
Save kik/842cd822ea21e334ab9a to your computer and use it in GitHub Desktop.
(defun show-current-char ()
(let ((ch (following-char)))
(format " [U+%04X %s] " ch (get-char-code-property ch 'name))))
(easy-mmode-define-minor-mode show-char-mode
"Toggle Show char mode."
t
(:eval (show-current-char)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment