I have a bunch of text files in a directory and I know I'll need to edit each one individually.
I start at the command line with:
vim *.txt
Which opens the files as separate buffers in Vim and leaves me looking at the first one. I edit it, then I use ':w' to save it and ':bd' to close the buffer and move on to the next one.
This ':w:bd' to save and close the buffer feels long to me, and I suspect there's a more Vim ninja way of doing it. What's the recommended way to save and close the buffer you are working on in one felt swoop?