Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

Is it possible to have a simple view displaying only the symlinks?

command! LnOnly :find . -t l -H --max-depth=1 works, but it shows them in the "menu view" which is rather useless in this case.

1 Answer

0 votes
by
 
Best answer

This should do it:

command! LnOnly find . -t l -H --max-depth=1 %u

You can also press b key in a menu to turn it into a list of files (limited to menus that present such lists).

by

Danke. Here is the version using GNU find (which is the default one in Debian) - command LnOnly !find -H %u -maxdepth 1 -type l

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...