Skip to content

Instantly share code, notes, and snippets.

@pstjean
Last active February 28, 2016 19:44
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 pstjean/82f737647535f9f1406a to your computer and use it in GitHub Desktop.
Save pstjean/82f737647535f9f1406a to your computer and use it in GitHub Desktop.
Format song lyrics with Vim
# Trim punctuation and whitespace from EOL
let @a='%s/[.|,|;|:][ \t]*$//g'
# Uppercase first letter of each line
let @b='%s/^\([a-z]\)/\U\1/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment