Hi!
vifm is excellent!
Problem in VISUAL mode:
When I highlight two files and type "d" it seems to delete the 2 files with :delete
Here are the settings that I have in the vifmrc:
set trash
" set trashdir=$HOME/ark/trash
nnoremap dd :trash<cr>
" I have a custom trash script (that works perfectly when I highlight one file).
command! trash trash %f
nnoremap d <Nop>
cmap :d :trash
cnoremap delete :trash
cmap :delete :trash
" set confirm-=delete
As you can see, I am trying everyting to disable or remap "d".
Nothing is working. vifm still behaves as though it uses :delete
I don't need :delete and am willing to disable it altogether.
My preference is to disable "d" and use "dd" to use my trash script.