0

This might be silly, but can be healthy to a lot of Emacs beginners, like myself. when opening a directory, list of files along with many information: owner, dates , permissions are showed. These are unnecessary for developers who might care about file name and relative location. So how can we change the options in Emacs to do such thing?

Also for large project navigation. any general advice how to navigate different files in smooth way? (I can see entering folder with 'i' in order to stay in same buffer) any general advice for smoother walk?

blackmath
  • 242
  • 1
  • 10

3 Answers3

0

here what to customize and my preferred value - i.e. the last edited files at bottom of buffer:

dired-listing-switches is a variable defined in `dired.el'. Its value is "-lart"

Andreas Röhler
  • 4,804
  • 14
  • 18
0

This removes the owner and group indicator:

(require 'ls-lisp)
(setq ls-lisp-use-insert-directory-program nil
      ls-lisp-verbosity nil)

I use this because dired-listing-switches doesn't quite do the trick in Cygwin.

You cannot, that I'm aware of, get rid of more than that in dired out-of-the-box.

harpo
  • 41,820
  • 13
  • 96
  • 131
  • Thanks Harpo, Is it possible to remove the permissions too? and if you can explain a little your small 3 lines for us to learn. – blackmath Jan 27 '13 at 08:38
0

If you use emacs 24.4 you can type ( in dired to call function dired-hide-details-mode. Otherwise you could try dired-details.