Created
September 6, 2014 06:02
-
-
Save kik/842cd822ea21e334ab9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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