ESS allows us to indent a line and an expression. Is there a key binding for indenting a buffer? If not, can we create it?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

As stated by others you could mark the whole buffer C-x h and then indent the region with C-M-\

You could also put something along these lines in your .emacs file:

(defun my-indent-buffer()
  (interactive)
  (save-excursion
    (indent-region (point-min) (point-max))))

(global-set-key "\C-cib" 'my-indent-buffer)

This has the benefit of remembering your point.

link|improve this answer
feedback

Not sure about a buffer but you can mark a region and then use C-M-\ on it.

link|improve this answer
4  
Or mark the whole buffer with C-x h. – Nicholas Riley May 28 '10 at 3:27
Ah. As always with Emacs, one learns something new every day. Or I guess one should. :) – Dirk Eddelbuettel May 28 '10 at 14:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.