Skip to content

Instantly share code, notes, and snippets.

@MattMS
Last active August 29, 2015 14:20
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 MattMS/683f9bf9a34791884abd to your computer and use it in GitHub Desktop.
Save MattMS/683f9bf9a34791884abd to your computer and use it in GitHub Desktop.
Find spaces in Vim

Find spaces in Vim

Find leading spaces

^\s*[ ]

The square brackets around the space are not needed, except here to avoid a trailing space.

Remove trailing spaces

:%s/\s\+$//g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment