I'm trying to use Emacs and everything is fine, but the information about every file in my directory is too comprehensive. How can I tell it to show only file name (and maybe filesize in human readable format)? I tried options like dired-listing-switches but without any luck.
|
You can reduce the amount of information displayed by using Emacs' ls emulation instead of allowing it to use ls directly. To enable ls emulation, add the following code to your startup file (probably .emacs or .emacs.d/init.el):
You can then customise the display with |
|||||
|
|
Try DiredDetails |
|||||||||
|
|
Great news, a more efficient version of DiredDetails is in the master branch of Eamcs now; it uses text properties instead of overlays.. I looked for it because DiredDetails' reliance on overlays made it too slow for one find-dired result set. I'm not sure if it'll be in 24.3 or 24.4. Get the raw file here: http://git.savannah.gnu.org/cgit/emacs.git/plain/lisp/dired.el |
|||
|
|
dired-listing-switchesdoesn't work because it's the list of parameters you want emacs to pass tols, and it MUST CONTAIN-l, which, as you know, is the long format switch forls. – willell Nov 6 '10 at 22:30