Skip to content

Instantly share code, notes, and snippets.

@v1m
Created August 4, 2014 13:38
Show Gist options
  • Save v1m/16a7358d1937352e7f52 to your computer and use it in GitHub Desktop.
Save v1m/16a7358d1937352e7f52 to your computer and use it in GitHub Desktop.
" Replaces 'smarT' quotes
%s/[“”]/"/g
" Replaces 'smart sIngle' quotes and backtick sIngle quotes (also covers 'smart' apostrophe)
%s/[‘’`]/'/g
" Replaces 'smart' Hyphens
%s/ – \| — \|—/ - /g
" Replaces 'backticK' quotes and 'double apostrophe' endquotes
%s/``\|''/"/g
" Replaces bullets with asterisks
%s/•/*/g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment