I have two buffers open side by side in Emacs. As I delete (or modify) lines in the first file, I would like the second file to receive the same commands / cursor position. Is this possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The closest thing I know of to what you've described is the multiple-cursors package, which is pretty cool, but it only implements multiple cursors within a single buffer. So I suppose that you could:
With what I suspect would be a considerable amount of hacking, one might be able to extend |
|||
|
command-log-modehas the functionality for intercepting and recording commands for subsequent playback. You could therefore adapt that code to instead play back each command immediately in the second buffer. I believe that is what wvxvw was getting at. – phils Sep 22 '12 at 10:39