Answer by tangrammer for How do I save multiple buffers (of my choosing) at...
I have googled now for this question and found the solution herehttp://johntellsall.blogspot.com.es/2013/03/emacs-save-all-modified-buffers.htmlYou have to add this config to your ~/.emacs.d/init.el...
View ArticleAnswer by Frank Henard for How do I save multiple buffers (of my choosing) at...
In emacs 23C-x C-b (M-x list-buffers) to view buffer listm to mark buffers to saveS to save marked buffersu to unmark buffers individually or M-x dired-unmark-all-marks for all
View ArticleAnswer by Borbus for How do I save multiple buffers (of my choosing) at the...
The answer to the question in the title is to pass an argument to save-buffers-kill-emacs (or -kill-terminal), ie. use the key combo C-u C-x C-c which will silently save all buffers and exit (or C-u...
View ArticleAnswer by phtrivier for How do I save multiple buffers (of my choosing) at...
In emacs 23, with ibuffer : 'M-x ibuffer' (to open a list of buffers)'*u' (start and u at the same time) to marked all unsaved buffers'S' to save all marked buffersStrangely enough, *u does not mark...
View ArticleAnswer by Joe Casadonte for How do I save multiple buffers (of my choosing)...
Use ibuffer, which should come with all late-model emacsen. Put the following in your .emacs file:(autoload 'ibuffer "ibuffer""" t)(global-set-key (kbd "C-x C-b") 'ibuffer)(defun my-ibuffer-load-hook...
View ArticleAnswer by Phil for How do I save multiple buffers (of my choosing) at the...
C-x C-b (M-x list-buffers) displays a list of all the buffers. Modified ones will be shown with a * next to them. You can mark a buffer for saving by pressing s. When you're done, press x to save all...
View ArticleHow do I save multiple buffers (of my choosing) at the same time in Emacs?
When I press C-x s (save-some-buffers) or C-x C-c (save-buffers-kill-terminal), Emacs displays the names of modified buffers one by one and asks what to do with each (save, diff, pass, ...). Pressing y...
View Article