Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by

This is something that might be useful:

command! mail thunderbird -compose "attachment='file:///%f:p'"

1 Answer

0 votes
by

I'd remove all the quotes, this way there should be no issues with escaping (Vifm does it right outside of quotes and putting quotes around might affect it negatively):

command! mail thunderbird -compose attachment=file:///%f:p
...