How can I close all buffers in Vim except the one I am currently editing?
I like 1,100bd (suggested by juananruiz) which seems to work for me.
1,100bd
I added a quit! to my mapping to give me
quit!
nnoremap bd :1,100bd nnoremap bdq :1,100bd:q!
This kills all the buffers and shuts down Vim, which is what I was looking for mostly.