Skip to content

Instantly share code, notes, and snippets.

@ArneBab
Created September 19, 2018 14:11
Show Gist options
  • Save ArneBab/75028d0bd23ffa6154810829aa547a5a to your computer and use it in GitHub Desktop.
Save ArneBab/75028d0bd23ffa6154810829aa547a5a to your computer and use it in GitHub Desktop.
(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