Skip to content

Instantly share code, notes, and snippets.

@jkimbo
Last active August 29, 2015 14:19
Show Gist options
  • Save jkimbo/f24cf63301bbfff10ba1 to your computer and use it in GitHub Desktop.
Save jkimbo/f24cf63301bbfff10ba1 to your computer and use it in GitHub Desktop.
Vim snippets

Find and replace

Replace all self.assertEqual statements with assert

:%s/self.assertEqual(\(.*\), \(.*\))/assert \1 == \2/gc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment