Différence entre les versions 13 et version actuelle
Résumé : Rollback to 2008-09-05 00:16 UTC
Pas de diff disponible.Try this:
C-x h C-M-\
C-x h runs the command mark-whole-buffer
M-C-\ runs the command indent-regionYou can also insert something like:
(defun indent-buffer ()
(interactive)
(save-excursion
(indent-region (point-min) (point-max) nil)))
(global-set-key [f12] 'indent-buffer)If you want to rewrap comments afterwards, see CodeBeautifying.