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

I am using this command to see a flat view of my current folder:

:!fd%u<cr>

It doesn't shows the files starting with dot. Is there a way to make it to show everything?

Thanks

1 Answer

0 votes
by
selected by
 
Best answer

%u doesn't filter out anything. From man fd:

By default fd will exclude hidden files and directories, as well as any files that match gitignore rules or ignore rules in .ignore or .fdignore files.

So you want to add -u or -H flag to your command.

by

thank you very much

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.
...