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
%u doesn't filter out anything. From man fd:
%u
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.
-u
-H
thank you very much