[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Opening multiple files in a single buffer?
From: |
Stefan Monnier |
Subject: |
Re: Opening multiple files in a single buffer? |
Date: |
Sat, 13 Jun 2020 15:31:00 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
> I think your idea is a real winner.
As I said, it's probably pretty easy to write such a thing.
If you like the idea, why don't you try?
You can call `insert-file-contents` several times in the same buffer to
insert the various files's contents. Then you need to keep track of
where is the separation between each file (probably using one overlay or
marker per file), and then use a hook like `write-contents-functions`
to do the save "by hand".
Stefan
- Re: Opening multiple files in a single buffer?, (continued)
- Re: Opening multiple files in a single buffer?, Jakub Jankiewicz, 2020/06/13
- Re: Opening multiple files in a single buffer?, Eli Zaretskii, 2020/06/13
- Re: Opening multiple files in a single buffer?, Gregory Heytings, 2020/06/13
- Re: Opening multiple files in a single buffer?, Perry Smith, 2020/06/13
- Re: Opening multiple files in a single buffer?, Gregory Heytings, 2020/06/13
- Re: Opening multiple files in a single buffer?, Arthur Miller, 2020/06/14
- Re: Opening multiple files in a single buffer?, Gregory Heytings, 2020/06/14
- Re: Opening multiple files in a single buffer?, Arthur Miller, 2020/06/14
- Re: Opening multiple files in a single buffer?, Gregory Heytings, 2020/06/14
- Sv: Opening multiple files in a single buffer?, arthur miller, 2020/06/15
Re: Opening multiple files in a single buffer?,
Stefan Monnier <=