Skip to content

Instantly share code, notes, and snippets.

@jarrodharvey
Last active April 8, 2023 07:18
Show Gist options
  • Save jarrodharvey/80635666e41512d4084a6506c871b199 to your computer and use it in GitHub Desktop.
Save jarrodharvey/80635666e41512d4084a6506c871b199 to your computer and use it in GitHub Desktop.
Fix aerc auto line break
# Aerc has a bloody nuisance of a bug for an otherwise great email client
# Put this command in your .vimrc, this will let you use the "FA" (Fix Aerc) command
# The FA command will replace all SINGLE line breaks with a space
# As you use double line breaks in your own writing this won't cause problems.
# It will ignore lines that end with commas or full stops.
# It also ignores lines starting with a triangular bracket
:command FA %s/\([^\n,\.]\)\n\([^\n\>]\)/\1 \2/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment