Thursday, March 14, 2013

Emacs: save all modified buffers


add to ~/.emacs.d/init.el:

(global-set-key 
 (kbd "")
 (lambda ()
   (interactive)
   (save-some-buffers t)))


No comments:

Post a Comment