When I use the command “:%bd” to delete all the buffers, not all the buffers are deleted. Why?
In the “:%bd” command, the ‘%’ range will be replaced with the starting and ending line numbers in the current buffer. Instead of using ‘%’ as the range, you should specify numbers for the range. For example, to delete all the buffers, you can use the command “:1,9999bd”.
Read free Software Algorithms and Computer Science Books by CodeAhoy Learn.
Introduction to Recursion and Backtracking