vimtricks.wiki Concise Vim tricks, one at a time.

How do you use the argument list to edit multiple files?

Answer

:args *.py

Explanation

Use :args *.py to populate the argument list with Python files. Navigate with :next and :prev. Run commands across all with :argdo.

Next

How do I visually select a double-quoted string including the quotes themselves?