Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 346 Bytes

File metadata and controls

14 lines (12 loc) · 346 Bytes
(defun open-files-from-list (file)
  "Open all files listed in FILE."
  (interactive "fFile containing list of files: ")
  (with-temp-buffer
    (insert-file-contents file)
    (dolist (line (split-string (buffer-string) "\n" t))
      (find-file line))))