all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mathias Dahl <mathias.dahl@gmail.com>
To: Angelo Graziosi <angelo.g0@libero.it>
Cc: "emacs-devel@gnu.org" <emacs-devel@gnu.org>
Subject: Re: Visiting a set of files listed in a file
Date: Tue, 12 Apr 2022 23:17:36 +0200	[thread overview]
Message-ID: <CABrcCQ58it7uT=HL02t6-stX=m=NVNUSzVr6EYtvsLSZDXZrYQ@mail.gmail.com> (raw)
In-Reply-To: <912809244.1719139.1649496689299@mail1.libero.it>

[-- Attachment #1: Type: text/plain, Size: 902 bytes --]

I would either record a keyboard macro, as others here suggested, or define
a simple command like this:

(defun find-files-region ()
  (interactive)
  (dolist (file (split-string
                 (buffer-substring
                  (region-beginning)
                  (region-end))
                 "\n" t ))
    (find-file file)))


Den lör 9 apr. 2022 kl 11:33 skrev Angelo Graziosi <angelo.g0@libero.it>:

> Maybe this is obvious but I did not find a solution..
>
> Can Emacs visit a set of files listed in a file?
>
> For example, I have a text file with
>
> /path_to/file1.f90
> /path_to/file2.txt
> /path_to/file3.c
> /path_to/file4.tex
> ....
>
> How can I visit all those files without doing that manually which could be
> tedious if the file to be visited are 40-50?
>
> It would be useful doing that both from command line and inside Emacs...
>
> TIA
>
>

[-- Attachment #2: Type: text/html, Size: 1316 bytes --]

      parent reply	other threads:[~2022-04-12 21:17 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-09  9:31 Visiting a set of files listed in a file Angelo Graziosi
2022-04-09  9:59 ` Eli Zaretskii
2022-04-09 10:15   ` Angelo Graziosi
2022-04-09 10:40     ` Eli Zaretskii
2022-04-09 11:01       ` Angelo Graziosi
2022-04-09 11:10         ` Eli Zaretskii
2022-04-09 11:29           ` Angelo Graziosi
2022-04-09 14:44             ` Eli Zaretskii
2022-04-09 20:21               ` Angelo Graziosi
2022-04-09 17:44 ` [External] : " Drew Adams
2022-04-09 20:29   ` Angelo Graziosi
2022-04-09 20:35     ` Angelo Graziosi
2022-04-09 20:46       ` Angelo Graziosi
2022-04-09 21:06         ` Drew Adams
2022-04-09 21:45           ` Angelo Graziosi
2022-04-09 20:56     ` Drew Adams
2022-04-10  1:07 ` James Thomas
2022-04-11 15:18   ` João Pedro
2022-04-11 15:31   ` chad
2022-04-11 20:34     ` Angelo Graziosi
2022-04-12  6:59   ` James Thomas
2022-04-12 21:17 ` Mathias Dahl [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CABrcCQ58it7uT=HL02t6-stX=m=NVNUSzVr6EYtvsLSZDXZrYQ@mail.gmail.com' \
    --to=mathias.dahl@gmail.com \
    --cc=angelo.g0@libero.it \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.