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.
command! LnOnly :find . -t l -H --max-depth=1
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).
Danke. Here is the version using GNU find (which is the default one in Debian) - command LnOnly !find -H %u -maxdepth 1 -type l
command LnOnly !find -H %u -maxdepth 1 -type l