0

这可能很愚蠢,但对很多 Emacs 初学者来说是健康的,比如我自己。打开目录时,会显示文件列表以及许多信息:所有者、日期、权限。对于可能关心文件名和相对位置的开发人员来说,这些是不必要的。那么我们怎样才能改变 Emacs 中的选项来做这样的事情呢?

也适用于大型项目导航。任何一般性建议如何以流畅的方式导航不同的文件?(我可以看到输入带有“i”的文件夹以保持在同一个缓冲区中)对于更顺畅的步行有什么一般建议吗?

4

3 回答 3

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.

于 2013-01-23T15:28:39.220 回答
0

这里要自定义的内容和我的首选值 - 即缓冲区底部的最后编辑文件:

dired-listing-switches 是在 `dired.el' 中定义的变量。它的值为“-lart”

于 2013-01-23T11:13:08.257 回答
0

如果你使用 emacs 24.4,你可以输入(dired 来调用函数dired-hide-details-mode。否则,您可以尝试dired-details

于 2015-09-15T07:26:38.630 回答