up vote 1 down vote favorite
share [g+] share [fb]

How does one create a symbolic link in vifm? The documentation and help file mention no word of it.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I have this in my .vifm/vifmrc:

COMMAND=ln=!ln -s %d/%f %D

this way when you call :ln, a link of the selected file is made in the other directory (if you are in split view). it even works with multiple files selected with visual (v) or tag (t).

link|improve this answer
this is great; thank you. – orlandu63 Apr 23 '10 at 19:56
feedback

I don't think there is a specific command, but you can execute any command using:

:! <command>

such as:

:! ln -s /media/usb usb
link|improve this answer
well that's unfortunate. – orlandu63 Feb 26 '10 at 17:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.