Skip to content

Instantly share code, notes, and snippets.

@stathissideris
Created August 24, 2016 22:16
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 stathissideris/6a8853577fc57e6368aa6c00d9955e79 to your computer and use it in GitHub Desktop.
Save stathissideris/6a8853577fc57e6368aa6c00d9955e79 to your computer and use it in GitHub Desktop.
(defun ss/erc-fix-fill (fill-fun)
(save-excursion
(goto-char (point-min))
(re-search-forward "> ")
(replace-match ">➭"))
(funcall fill-fun)
(save-excursion
(goto-char (point-min))
(re-search-forward ">➭")
(replace-match "> ")))
(advice-add 'erc-fill-regarding-timestamp :around #'ss/erc-fix-fill)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment