Created
September 19, 2018 14:11
-
-
Save ArneBab/75028d0bd23ffa6154810829aa547a5a to your computer and use it in GitHub Desktop.
This file contains 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 strikethrough (start end) | |
(interactive "r") | |
(goto-char (min start end)) | |
(while (< (point) (+ (max start end) (abs (- start end)))) | |
(forward-char) | |
(insert "̶"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment