1 ;;; em-ls.el --- implementation of ls in Lisp
3 ;; Copyright (C) 1999, 2000 Free Software Foundation
5 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 (eval-when-compile (require 'esh-maint
))
28 (defgroup eshell-ls nil
29 "This module implements the \"ls\" utility fully in Lisp. If it is
30 passed any unrecognized command switches, it will revert to the
31 operating system's version. This version of \"ls\" uses text
32 properties to colorize its output based on the setting of
33 `eshell-ls-use-colors'."
34 :tag
"Implementation of `ls' in Lisp"
35 :group
'eshell-module
)
39 ;; Most of the command switches recognized by GNU's ls utility are
40 ;; supported ([(fileutils)ls invocation]).
47 (defvar eshell-ls-orig-insert-directory
48 (symbol-function 'insert-directory
)
49 "Preserve the original definition of `insert-directory'.")
51 (defcustom eshell-ls-unload-hook
55 (fset 'insert-directory eshell-ls-orig-insert-directory
))))
56 "*When unloading `eshell-ls', restore the definition of `insert-directory'."
60 (defcustom eshell-ls-initial-args nil
61 "*If non-nil, this list of args is included before any call to `ls'.
62 This is useful for enabling human-readable format (-h), for example."
63 :type
'(repeat :tag
"Arguments" string
)
66 (defcustom eshell-ls-dired-initial-args nil
67 "*If non-nil, args is included before any call to `ls' in dired.
68 This is useful for enabling human-readable format (-h), for example."
69 :type
'(repeat :tag
"Arguments" string
)
72 (defcustom eshell-ls-use-in-dired nil
73 "*If non-nil, use `eshell-ls' to read directories in dired."
74 :set
(lambda (symbol value
)
76 (unless (and (boundp 'eshell-ls-use-in-dired
)
77 eshell-ls-use-in-dired
)
78 (fset 'insert-directory
'eshell-ls-insert-directory
))
79 (when (and (boundp 'eshell-ls-insert-directory
)
80 eshell-ls-use-in-dired
)
81 (fset 'insert-directory eshell-ls-orig-insert-directory
)))
82 (setq eshell-ls-use-in-dired value
))
87 (defcustom eshell-ls-default-blocksize
1024
88 "*The default blocksize to use when display file sizes with -s."
92 (defcustom eshell-ls-exclude-regexp nil
93 "*Unless -a is specified, files matching this regexp will not be shown."
94 :type
'(choice regexp
(const nil
))
97 (defcustom eshell-ls-exclude-hidden t
98 "*Unless -a is specified, files beginning with . will not be shown.
99 Using this boolean, instead of `eshell-ls-exclude-regexp', is both
100 faster and conserves more memory."
104 (defcustom eshell-ls-use-colors t
105 "*If non-nil, use colors in file listings."
109 (defface eshell-ls-directory-face
110 '((((class color
) (background light
)) (:foreground
"Blue" :weight bold
))
111 (((class color
) (background dark
)) (:foreground
"SkyBlue" :weight bold
))
113 "*The face used for highlight directories."
116 (defface eshell-ls-symlink-face
117 '((((class color
) (background light
)) (:foreground
"Dark Cyan" :weight bold
))
118 (((class color
) (background dark
)) (:foreground
"Cyan" :weight bold
)))
119 "*The face used for highlight symbolic links."
122 (defface eshell-ls-executable-face
123 '((((class color
) (background light
)) (:foreground
"ForestGreen" :weight bold
))
124 (((class color
) (background dark
)) (:foreground
"Green" :weight bold
)))
125 "*The face used for highlighting executables (not directories, though)."
128 (defface eshell-ls-readonly-face
129 '((((class color
) (background light
)) (:foreground
"Brown"))
130 (((class color
) (background dark
)) (:foreground
"Pink")))
131 "*The face used for highlighting read-only files."
134 (defface eshell-ls-unreadable-face
135 '((((class color
) (background light
)) (:foreground
"Grey30"))
136 (((class color
) (background dark
)) (:foreground
"DarkGrey")))
137 "*The face used for highlighting unreadable files."
140 (defface eshell-ls-special-face
141 '((((class color
) (background light
)) (:foreground
"Magenta" :weight bold
))
142 (((class color
) (background dark
)) (:foreground
"Magenta" :weight bold
)))
143 "*The face used for highlighting non-regular files."
146 (defface eshell-ls-missing-face
147 '((((class color
) (background light
)) (:foreground
"Red" :weight bold
))
148 (((class color
) (background dark
)) (:foreground
"Red" :weight bold
)))
149 "*The face used for highlighting non-existant file names."
152 (defcustom eshell-ls-archive-regexp
153 (concat "\\.\\(t\\(a[rz]\\|gz\\)\\|arj\\|lzh\\|"
154 "zip\\|[zZ]\\|gz\\|bz2\\|deb\\|rpm\\)\\'")
155 "*A regular expression that matches names of file archives.
156 This typically includes both traditional archives and compressed
161 (defface eshell-ls-archive-face
162 '((((class color
) (background light
)) (:foreground
"Orchid" :weight bold
))
163 (((class color
) (background dark
)) (:foreground
"Orchid" :weight bold
)))
164 "*The face used for highlighting archived and compressed file names."
167 (defcustom eshell-ls-backup-regexp
168 "\\(\\`\\.?#\\|\\(\\.bak\\|~\\)\\'\\)"
169 "*A regular expression that matches names of backup files."
173 (defface eshell-ls-backup-face
174 '((((class color
) (background light
)) (:foreground
"OrangeRed"))
175 (((class color
) (background dark
)) (:foreground
"LightSalmon")))
176 "*The face used for highlighting backup file names."
179 (defcustom eshell-ls-product-regexp
180 "\\.\\(elc\\|o\\(bj\\)?\\|a\\||lib\\|res\\)\\'"
181 "*A regular expression that matches names of product files.
182 Products are files that get generated from a source file, and hence
183 ought to be recreatable if they are deleted."
187 (defface eshell-ls-product-face
188 '((((class color
) (background light
)) (:foreground
"OrangeRed"))
189 (((class color
) (background dark
)) (:foreground
"LightSalmon")))
190 "*The face used for highlighting files that are build products."
193 (defcustom eshell-ls-clutter-regexp
194 "\\(^texput\\.log\\|^core\\)\\'"
195 "*A regular expression that matches names of junk files.
196 These are mainly files that get created for various reasons, but don't
197 really need to stick around for very long."
201 (defface eshell-ls-clutter-face
202 '((((class color
) (background light
)) (:foreground
"OrangeRed" :weight bold
))
203 (((class color
) (background dark
)) (:foreground
"OrangeRed" :weight bold
)))
204 "*The face used for highlighting junk file names."
207 (defsubst eshell-ls-filetype-p
(attrs type
)
208 "Test whether ATTRS specifies a directory."
210 (eq (aref (nth 8 attrs
) 0) type
)))
212 (defmacro eshell-ls-applicable
(attrs index func file
)
213 "Test whether, for ATTRS, the user UID can do what corresponds to INDEX.
214 This is really just for efficiency, to avoid having to stat the file
216 `(if (numberp (nth 2 ,attrs
))
217 (if (= (user-uid) (nth 2 ,attrs
))
218 (not (eq (aref (nth 8 ,attrs
) ,index
) ?-
))
219 (,(eval func
) ,file
))
220 (not (eq (aref (nth 8 ,attrs
)
221 (+ ,index
(if (member (nth 2 ,attrs
)
222 (eshell-current-ange-uids))
226 (defcustom eshell-ls-highlight-alist nil
227 "*This alist correlates test functions to color.
228 The format of the members of this alist is
232 If TEST-SEXP evals to non-nil, that face will be used to highlight the
233 name of the file. The first match wins. `file' and `attrs' are in
234 scope during the evaluation of TEST-SEXP."
235 :type
'(repeat (cons function face
))
240 (defun eshell-ls-insert-directory
241 (file switches
&optional wildcard full-directory-p
)
242 "Insert directory listing for FILE, formatted according to SWITCHES.
243 Leaves point after the inserted text.
244 SWITCHES may be a string of options, or a list of strings.
245 Optional third arg WILDCARD means treat FILE as shell wildcard.
246 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
247 switches do not contain `d', so that a full listing is expected.
249 This version of the function uses `eshell/ls'. If any of the switches
250 passed are not recognized, the operating system's version will be used
252 (let ((handler (find-file-name-handler file
'insert-directory
)))
254 (funcall handler
'insert-directory file switches
255 wildcard full-directory-p
)
256 (if (stringp switches
)
257 (setq switches
(split-string switches
)))
258 (let (eshell-current-handles
259 eshell-current-subjob-p
)
260 ;; use the fancy highlighting in `eshell-ls' rather than font-lock
261 (when (and eshell-ls-use-colors
262 (featurep 'font-lock
))
264 (setq font-lock-defaults nil
)
265 (if (boundp 'font-lock-buffers
)
266 (set 'font-lock-buffers
267 (delq (current-buffer)
268 (symbol-value 'font-lock-buffers
)))))
269 (let ((insert-func 'insert
)
272 eshell-ls-dired-initial-args
)
273 (eshell-do-ls (append switches
(list file
))))))))
275 (defsubst eshell
/ls
(&rest args
)
276 "An alias version of `eshell-do-ls'."
277 (let ((insert-func 'eshell-buffered-print
)
278 (error-func 'eshell-error
)
279 (flush-func 'eshell-flush
))
280 (eshell-do-ls args
)))
282 (put 'eshell
/ls
'eshell-no-numeric-conversions t
)
286 (defvar dereference-links
)
290 (defvar human-readable
)
291 (defvar ignore-pattern
)
293 (defvar listing-style
)
294 (defvar numeric-uid-gid
)
295 (defvar reverse-list
)
297 (defvar show-recursive
)
302 (defun eshell-do-ls (&rest args
)
303 "Implementation of \"ls\" in Lisp, passing ARGS."
304 (funcall flush-func -
1)
305 ;; process the command arguments, and begin listing files
306 (eshell-eval-using-options
307 "ls" (if eshell-ls-initial-args
308 (list eshell-ls-initial-args args
)
310 `((?a
"all" nil show-all
311 "show all files in directory")
312 (?c nil by-ctime sort-method
313 "sort by modification time")
314 (?d
"directory" nil dir-literal
315 "list directory entries instead of contents")
316 (?k
"kilobytes" 1024 block-size
317 "using 1024 as the block size")
318 (?h
"human-readable" 1024 human-readable
319 "print sizes in human readable format")
320 (?H
"si" 1000 human-readable
321 "likewise, but use powers of 1000 not 1024")
322 (?I
"ignore" t ignore-pattern
323 "do not list implied entries matching pattern")
324 (?l nil long-listing listing-style
325 "use a long listing format")
326 (?n
"numeric-uid-gid" nil numeric-uid-gid
327 "list numeric UIDs and GIDs instead of names")
328 (?r
"reverse" nil reverse-list
329 "reverse order while sorting")
330 (?s
"size" nil show-size
331 "print size of each file, in blocks")
332 (?t nil by-mtime sort-method
333 "sort by modification time")
334 (?u nil by-atime sort-method
335 "sort by last access time")
336 (?x nil by-lines listing-style
337 "list entries by lines instead of by columns")
338 (?C nil by-columns listing-style
339 "list entries by columns")
340 (?L
"deference" nil dereference-links
341 "list entries pointed to by symbolic links")
342 (?R
"recursive" nil show-recursive
343 "list subdirectories recursively")
344 (?S nil by-size sort-method
346 (?U nil unsorted sort-method
347 "do not sort; list entries in directory order")
348 (?X nil by-extension sort-method
349 "sort alphabetically by entry extension")
350 (?
1 nil single-column listing-style
351 "list one file per line")
353 "show this usage display")
355 :usage
"[OPTION]... [FILE]...
356 List information about the FILEs (the current directory by default).
357 Sort entries alphabetically across.")
358 ;; setup some defaults, based on what the user selected
360 (setq block-size eshell-ls-default-blocksize
))
361 (unless listing-style
362 (setq listing-style
'by-columns
))
364 (setq args
(list ".")))
365 (let ((eshell-ls-exclude-regexp eshell-ls-exclude-regexp
) ange-cache
)
367 (unless (eshell-using-module 'eshell-glob
)
368 (error (concat "-I option requires that `eshell-glob'"
369 " be a member of `eshell-modules-list'")))
370 (set-text-properties 0 (length ignore-pattern
) nil ignore-pattern
)
371 (setq eshell-ls-exclude-regexp
372 (if eshell-ls-exclude-regexp
373 (concat "\\(" eshell-ls-exclude-regexp
"\\|"
374 (eshell-glob-regexp ignore-pattern
) "\\)")
375 (eshell-glob-regexp ignore-pattern
))))
380 (cons (if (and (eshell-under-windows-p)
381 (file-name-absolute-p arg
))
382 (expand-file-name arg
)
384 (eshell-file-attributes arg
))))
386 t
(expand-file-name default-directory
)))
387 (funcall flush-func
)))
389 (defsubst eshell-ls-printable-size
(filesize &optional by-blocksize
)
390 "Return a printable FILESIZE."
391 (eshell-printable-size filesize human-readable
392 (and by-blocksize block-size
)
393 eshell-ls-use-colors
))
395 (defsubst eshell-ls-size-string
(attrs size-width
)
396 "Return the size string for ATTRS length, using SIZE-WIDTH."
397 (let* ((str (eshell-ls-printable-size (nth 7 attrs
) t
))
399 (if (< len size-width
)
400 (concat (make-string (- size-width len
) ?
) str
)
403 (defun eshell-ls-annotate (fileinfo)
404 "Given a FILEINFO object, return a resolved, decorated FILEINFO.
405 This means resolving any symbolic links, determining what face the
406 name should be displayed as, etc. Think of it as cooking a FILEINFO."
407 (if (not (and (stringp (cadr fileinfo
))
408 (or dereference-links
409 (eq listing-style
'long-listing
))))
410 (setcar fileinfo
(eshell-ls-decorated-name fileinfo
))
412 (unless (file-name-absolute-p (cadr fileinfo
))
413 (setq dir
(file-truename
415 (expand-file-name (car fileinfo
))))))
417 (eshell-file-attributes
418 (let ((target (if dir
419 (expand-file-name (cadr fileinfo
) dir
)
421 (if dereference-links
422 (file-truename target
)
424 (if (or dereference-links
425 (string-match "^\\.\\.?$" (car fileinfo
)))
427 (setcdr fileinfo attr
)
428 (setcar fileinfo
(eshell-ls-decorated-name fileinfo
)))
429 (assert (eq listing-style
'long-listing
))
431 (concat (eshell-ls-decorated-name fileinfo
) " -> "
432 (eshell-ls-decorated-name
433 (cons (cadr fileinfo
) attr
)))))))
436 (defun eshell-ls-file (fileinfo &optional size-width copy-fileinfo
)
437 "Output FILE in long format.
438 FILE may be a string, or a cons cell whose car is the filename and
439 whose cdr is the list of file attributes."
440 (if (not (cdr fileinfo
))
441 (funcall error-func
(format "%s: No such file or directory\n"
444 (eshell-ls-annotate (if copy-fileinfo
448 (let ((file (car fileinfo
))
449 (attrs (cdr fileinfo
)))
450 (if (not (eq listing-style
'long-listing
))
452 (funcall insert-func
(eshell-ls-size-string attrs size-width
)
454 (funcall insert-func file
"\n"))
458 (concat (eshell-ls-size-string attrs size-width
) " "))
461 (or (nth 8 attrs
) "??????????")
463 (or (let ((user (nth 2 attrs
)))
464 (and (not numeric-uid-gid
)
468 (user-login-name user
)
472 (or (let ((group (nth 3 attrs
)))
473 (and (not numeric-uid-gid
)
477 (eshell-group-name group
)
481 (let* ((str (eshell-ls-printable-size (nth 7 attrs
)))
484 (concat (make-string (- 8 len
) ?
) str
)
486 " " (format-time-string
489 (if (= (nth 5 (decode-time (current-time)))
492 ((eq sort-method
'by-atime
) 4)
493 ((eq sort-method
'by-ctime
) 6)
497 ((eq sort-method
'by-atime
) 4)
498 ((eq sort-method
'by-ctime
) 6)
499 (t 5)) attrs
)) " ")))
500 (funcall insert-func line file
"\n"))))))
502 (defun eshell-ls-dir (dirinfo &optional insert-name root-dir size-width
)
503 "Output the entries in DIRINFO.
504 If INSERT-NAME is non-nil, the name of DIRINFO will be output. If
505 ROOT-DIR is also non-nil, and a directory name, DIRINFO will be output
506 relative to that directory."
507 (let ((dir (car dirinfo
)))
508 (if (not (cdr dirinfo
))
509 (funcall error-func
(format "%s: No such file or directory\n" dir
))
511 (eshell-ls-file dirinfo size-width
)
514 (eshell-ls-decorated-name
517 (file-relative-name dir root-dir
)
518 (expand-file-name dir
)))
519 (cdr dirinfo
))) ":\n"))
520 (let ((entries (eshell-directory-files-and-attributes
521 dir nil
(and (not show-all
)
522 eshell-ls-exclude-hidden
524 (when (and (not show-all
) eshell-ls-exclude-regexp
)
525 (while (and entries
(string-match eshell-ls-exclude-regexp
527 (setq entries
(cdr entries
)))
530 (if (string-match eshell-ls-exclude-regexp
(car (cadr e
)))
533 (when (or (eq listing-style
'long-listing
) show-size
)
536 (eshell-for e entries
538 (setq total
(+ total
(nth 7 (cdr e
)))
541 (length (eshell-ls-printable-size
542 (nth 7 (cdr e
)) t
))))))
543 (funcall insert-func
"total "
544 (eshell-ls-printable-size total t
) "\n")))
545 (let ((default-directory (expand-file-name dir
)))
548 (let ((e entries
) (good-entries (list t
)))
550 (unless (let ((len (length (caar e
))))
551 (and (eq (aref (caar e
) 0) ?.
)
554 (eq (aref (caar e
) 1) ?.
)))))
555 (nconc good-entries
(list (car e
))))
559 (eshell-ls-files (eshell-ls-sort-entries entries
)
562 (defsubst eshell-ls-compare-entries
(l r inx func
)
563 "Compare the time of two files, L and R, the attribute indexed by INX."
564 (let ((lt (nth inx
(cdr l
)))
565 (rt (nth inx
(cdr r
))))
567 (string-lessp (directory-file-name (car l
))
568 (directory-file-name (car r
)))
569 (funcall func rt lt
))))
571 (defun eshell-ls-sort-entries (entries)
572 "Sort the given ENTRIES, which may be files, directories or both.
573 In Eshell's implementation of ls, ENTRIES is always reversed."
574 (if (eq sort-method
'unsorted
)
581 ((eq sort-method
'by-atime
)
582 (eshell-ls-compare-entries l r
4 'eshell-time-less-p
))
583 ((eq sort-method
'by-mtime
)
584 (eshell-ls-compare-entries l r
5 'eshell-time-less-p
))
585 ((eq sort-method
'by-ctime
)
586 (eshell-ls-compare-entries l r
6 'eshell-time-less-p
))
587 ((eq sort-method
'by-size
)
588 (eshell-ls-compare-entries l r
7 '<))
589 ((eq sort-method
'by-extension
)
590 (let ((lx (file-name-extension
591 (directory-file-name (car l
))))
592 (rx (file-name-extension
593 (directory-file-name (car r
)))))
595 ((or (and (not lx
) (not rx
))
597 (string-lessp (directory-file-name (car l
))
598 (directory-file-name (car r
))))
602 (string-lessp lx rx
)))))
604 (string-lessp (directory-file-name (car l
))
605 (directory-file-name (car r
)))))))
610 (defun eshell-ls-files (files &optional size-width copy-fileinfo
)
611 "Output a list of FILES.
612 Each member of FILES is either a string or a cons cell of the form
614 (if (memq listing-style
'(long-listing single-column
))
615 (eshell-for file files
617 (eshell-ls-file file size-width copy-fileinfo
)))
628 (format "%s: No such file or directory\n" (caar f
))))
630 (setq files
(cdr files
)
637 (setcdr f
(cddr f
))))))
639 (setq display-files
(mapcar 'eshell-ls-annotate files
))
640 (eshell-for file files
641 (let* ((str (eshell-ls-printable-size (nth 7 (cdr file
)) t
))
643 (if (< len size-width
)
644 (setq str
(concat (make-string (- size-width len
) ?
) str
)))
645 (setq file
(eshell-ls-annotate file
)
646 display-files
(cons (cons (concat str
" " (car file
))
649 (setq display-files
(nreverse display-files
)))
651 (if (eq listing-style
'by-columns
)
652 (eshell-ls-find-column-lengths display-files
)
653 (assert (eq listing-style
'by-lines
))
654 (eshell-ls-find-column-widths display-files
)))
655 (col-widths (car col-vals
))
656 (display-files (cdr col-vals
))
657 (columns (length col-widths
))
660 (eshell-for file display-files
664 (concat (substring (car file
) 0 size-width
)
665 (eshell-ls-decorated-name
666 (cons (substring (car file
) size-width
)
668 (eshell-ls-decorated-name file
))
670 (if (< col-index columns
)
672 (concat need-return name
674 (max 0 (- (aref col-widths
677 col-index
(1+ col-index
))
678 (funcall insert-func need-return name
"\n")
679 (setq col-index
1 need-return nil
))))
681 (funcall insert-func need-return
"\n"))))))
683 (defun eshell-ls-entries (entries &optional separate root-dir
)
684 "Output PATH's directory ENTRIES, formatted according to OPTIONS.
685 Each member of ENTRIES may either be a string or a cons cell, the car
686 of which is the file name, and the cdr of which is the list of
688 If SEPARATE is non-nil, directories name will be entirely separated
689 from the filenames. This is the normal behavior, except when doing a
691 ROOT-DIR, if non-nil, specifies the root directory of the listing, to
692 which non-absolute directory names will be made relative if ever they
694 (let (dirs files show-names need-return
(size-width 0))
695 (eshell-for entry entries
696 (if (and (not dir-literal
)
697 (or (eshell-ls-filetype-p (cdr entry
) ?d
)
698 (and (eshell-ls-filetype-p (cdr entry
) ?l
)
699 (file-directory-p (car entry
)))))
702 (setq files
(cons entry files
)
706 (length (eshell-ls-printable-size
707 (nth 7 (cdr entry
)) t
))))))
708 (setq dirs
(cons entry dirs
)))
709 (setq files
(cons entry files
)
713 (length (eshell-ls-printable-size
714 (nth 7 (cdr entry
)) t
)))))))
716 (eshell-ls-files (eshell-ls-sort-entries files
)
717 size-width show-recursive
)
718 (setq need-return t
))
719 (setq show-names
(or show-recursive
720 (> (+ (length files
) (length dirs
)) 1)))
721 (eshell-for dir
(eshell-ls-sort-entries dirs
)
722 (if (and need-return
(not dir-literal
))
723 (funcall insert-func
"\n"))
724 (eshell-ls-dir dir show-names
725 (unless (file-name-absolute-p (car dir
)) root-dir
)
727 (setq need-return t
))))
729 (defun eshell-ls-find-column-widths (files)
730 "Find the best fitting column widths for FILES.
731 It will be returned as a vector, whose length is the number of columns
732 to use, and each member of which is the width of that column
733 \(including spacing)."
740 (+ 2 (length (car file
)))))
742 ;; must account for the added space...
743 (max-width (+ (window-width) 2))
747 ;; determine the largest number of columns in the first row
749 (while (and w
(< width max-width
))
750 (setq width
(+ width
(car w
))
754 ;; refine it based on the following rows
757 (colw (make-vector numcols
0))
762 (aset colw i
(max (aref colw i
) (car w
)))
763 (setq w
(cdr w
) i
(1+ i
)))
766 (setq width
(+ width
(aref colw i
))
768 (if (and (< width max-width
)
769 (> width best-width
))
770 (setq col-widths colw
772 (setq numcols
(1- numcols
)))
774 (cons (or col-widths
(vector max-width
)) files
)))
776 (defun eshell-ls-find-column-lengths (files)
777 "Find the best fitting column lengths for FILES.
778 It will be returned as a vector, whose length is the number of columns
779 to use, and each member of which is the width of that column
780 \(including spacing)."
787 (+ 2 (length (car file
)))))
789 (max-width (+ (window-width) 2))
793 ;; refine it based on the following rows
795 (let* ((rows (ceiling (/ (length widths
)
798 (len (* rows numcols
))
802 (unless (or (= rows
0)
803 (<= (/ (length widths
) (float rows
))
804 (float (1- numcols
))))
805 (setq colw
(make-vector numcols
0))
808 (setq i
0 index
(1+ index
)))
811 (or (nth (+ (* i rows
) index
) w
) 0)))
812 (setq len
(1- len
) i
(1+ i
)))
815 (setq width
(+ width
(aref colw i
))
817 (if (>= width max-width
)
820 (setq col-widths colw
))
821 (if (>= numcols
(length widths
))
823 (setq numcols
(1+ numcols
))))))
826 (cons (vector max-width
) files
)
827 (setq numcols
(length col-widths
))
828 (let* ((rows (ceiling (/ (length widths
)
830 (len (* rows numcols
))
831 (newfiles (make-list len nil
))
837 (setq i
0 index
(1+ index
)))
838 (setcar (nthcdr j newfiles
)
839 (nth (+ (* i rows
) index
) files
))
840 (setq j
(1+ j
) i
(1+ i
)))
841 (cons col-widths newfiles
)))))
843 (defun eshell-ls-decorated-name (file)
844 "Return FILE, possibly decorated.
845 Use TRUENAME for predicate tests, if passed."
846 (if eshell-ls-use-colors
850 'eshell-ls-missing-face
)
852 ((stringp (cadr file
))
853 'eshell-ls-symlink-face
)
856 'eshell-ls-directory-face
)
858 ((not (eshell-ls-filetype-p (cdr file
) ?-
))
859 'eshell-ls-special-face
)
861 ((and (/= (user-uid) 0) ; root can execute anything
862 (eshell-ls-applicable (cdr file
) 3
863 'file-executable-p
(car file
)))
864 'eshell-ls-executable-face
)
866 ((not (eshell-ls-applicable (cdr file
) 1
867 'file-readable-p
(car file
)))
868 'eshell-ls-unreadable-face
)
870 ((string-match eshell-ls-archive-regexp
(car file
))
871 'eshell-ls-archive-face
)
873 ((string-match eshell-ls-backup-regexp
(car file
))
874 'eshell-ls-backup-face
)
876 ((string-match eshell-ls-product-regexp
(car file
))
877 'eshell-ls-product-face
)
879 ((string-match eshell-ls-clutter-regexp
(car file
))
880 'eshell-ls-clutter-face
)
882 ((not (eshell-ls-applicable (cdr file
) 2
883 'file-writable-p
(car file
)))
884 'eshell-ls-readonly-face
)
885 (eshell-ls-highlight-alist
886 (let ((tests eshell-ls-highlight-alist
)
889 (if (funcall (caar tests
) (car file
) (cdr file
))
890 (setq value
(cdar tests
) tests nil
)
891 (setq tests
(cdr tests
))))
894 (add-text-properties 0 (length (car file
))
901 ;;; em-ls.el ends here