9

Emacs 26.1. , Dired+

Here content folder TraderMonitor in Total Commander:

enter image description here

and here how look same folder (TraderMonitor) in Emacs, dired mode:

enter image description here

How show hidden/system folders:

.git
.idea

and file:

.gitignore

?

P.S. If I start by emacs -Q I see all this hidden files:

enter image description here

a_subscriber
  • 4,062
  • 1
  • 18
  • 56

1 Answers1

9

What is the value of option dired-listing-switches? If you are telling ls not to list dot files ("hidden" files) then they will not be shown by Dired.

Do you have dired-omit-mode turned on? If so, what are the values of options dired-omit-files and dired-omit-extensions?

Even with vanilla Dired, file names with extensions such as .git are matched by the default value of dired-omit-extensions, so they will not show when dired-omit-mode is turned on.

Do you see the same behavior if you start Emacs without your init file: emacs -Q and you use only vanilla Dired? If you start Emacs without your init file and you use Dired+?

Dired is quite configurable, and Dired+ is even more so. Whether to show such files is up to you.

Drew
  • 77,472
  • 10
  • 114
  • 243