Vim users would be familiar with getting into and viewing the current directory listing by using
:o .
In this directory view, we are able to give additional commands like d and vim will respond with "Please give directory name:". This of course allows us to create a new directory in the current directory once we provide a directory name to vim.
Similarly, we can delete an empty directory by first moving our cursor down to the listing that underlines the specific directory we want to remove and typing D.
The problem is, vim does not allow us to delete a non-empty directory.
Is that any way to insist that we delete the non-empty directory?