From 2044be09357c46af13ed341bafbcc5737bd40c42 Mon Sep 17 00:00:00 2001 From: Lin Sun Date: Mon, 8 Apr 2024 06:59:21 +0000 Subject: [PATCH] * lisp/ls-lisp.el (ls-lisp--sanitize-switches): support more time options --- lisp/ls-lisp.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index d09b53b1cc..ae4a43797f 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -873,6 +873,7 @@ ls-lisp--sanitize-switches (let ((lsflags '(("-a" . "--all") ("-A" . "--almost-all") ("-B" . "--ignore-backups") + ("-c" . "--time=ctime") ("-C" . "--color") ("-F" . "--classify") ("-G" . "--no-group") @@ -883,7 +884,9 @@ ls-lisp--sanitize-switches ("-r" . "--reverse") ("-R" . "--recursive") ("-s" . "--size") + ("-t" . "--sort=time") ("-S" . "--sort.*[ \\\t]") + ("-u" . "--time=atime") ("" . "--group-directories-first") ("" . "--author") ("" . "--escape") -- 2.20.5