In my old vim configuration, I used https://github.com/tpope/vim-eunuch to get file system commands.
In particular, I used the :Move command. However, since I am in git repositories most of the time, I did not need it, because I usually do :GMove newfilename from vim-fugitive. The unavailability of :Move is good in this case, so I cannot accidentally use it and then have to update git's index later.
However, sometimes things like :Mkdir might be useful. Maybe there is a better solution that works nicely with or is somewhat integrated into dirvish?
In my old vim configuration, I used https://github.com/tpope/vim-eunuch to get file system commands. In particular, I used the
:Move
command. However, since I am in git repositories most of the time, I did not need it, because I usually do:GMove newfilename
from vim-fugitive. The unavailability of:Move
is good in this case, so I cannot accidentally use it and then have to update git's index later.However, sometimes things like
:Mkdir
might be useful. Maybe there is a better solution that works nicely with or is somewhat integrated into dirvish?