vifm: Add new tab mapping

This commit is contained in:
Marty Oehme 2023-03-19 14:55:07 +01:00
parent e464c5000a
commit 3795b20a59
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -227,6 +227,9 @@ nnoremap e :!nvim %f<cr>
" Open file in the background using its default program
nnoremap gb :file &<cr>l
" create a tab
nnoremap <space>t :tabnew<cr>
" yank current directory path into the clipboard
" clip is universal clipper from `sh` module
nnoremap yd :!echo -n %d | clip %i<cr>