you had killed them with @kbd{C-w}. The names are separated by a
space.
- With a zero prefix argument, this uses the absolute file name of
-each marked file. With just @kbd{C-u} as the prefix argument, it uses
+ With a zero prefix argument, this uses the absolute file name of each
+marked file. With prefix value 1, it uses names relative to the
+project root. With just @kbd{C-u} as the prefix argument, it uses
file names relative to the Dired buffer's default directory. (This
can still contain slashes if in a subdirectory.) As a special case,
if point is on a directory header line, @kbd{w} gives you the absolute
quoting is done.)
With a zero prefix arg, use the absolute file name of each marked file.
+With a prefix value 1, use the names relative to the current project root.
With \\[universal-argument], use the file name relative to the Dired buffer's
`default-directory'. (This still may contain slashes if in a subdirectory.)
(let* ((files
(or (ensure-list (dired-get-subdir))
(if arg
- (cond ((zerop (prefix-numeric-value arg))
+ (cond ((eql 0 arg)
(dired-get-marked-files))
+ ((eql 1 arg)
+ (let ((root (project-root (project-current t))))
+ (mapcar
+ (lambda (file) (file-relative-name file root))
+ (dired-get-marked-files))))
((consp arg)
(dired-get-marked-files t))
(t