I am looking for an equivalent of the ":bufdo" Vim command in Emacs. ":bufdo" takes an argument - another command - and executes the command on all open buffers. I have not yet found a similar feature in Emacs - any suggestions?
Thanks.
|
|
|
|
|
|
|
Depending on what your command is, you can do:
But, I have a feeling you want something not so lispy. Take a look at keyboard macros. Namely, decide what you want to do:
You'd probably want to define that last part as a function if you use it much:
Note: code is untested |
||||||||
|
|
|
You can also checkout ibuffer, it allows you to mark buffers you like to operate on with BTW, similar things are also possible from dired, although it doesn't seem to give you an |
||
|
|
|
|
Take a look at buffer-list (function). It returns a list of all the open buffers (BUFFER objects). See the manual for a simple example of using it with mapcar (which operates on every element of the list, and accumulates the results). You would probably also find set-buffer, which programatically sets the current buffer from Emacs Lisp, useful. |
||
|
|