vote up 3 vote down star

Hi,

I have a little problem with compiling my project in emacs. The compilation buffer does not line-wrap and I have some very long compile and link commands which I would like to sanity check sometimes.

Does anyone know how to force line-wrap on the output added to the compilation buffer, ideally as it is added (a la auto-fill).

VBR, Mark.

flag

1 Answer

vote up 6 vote down check

Try this:

(defun my-compilation-mode-hook ()
  (setq truncate-lines nil)
  (setq truncate-partial-width-windows nil))
(add-hook 'compilation-mode-hook 'my-compilation-mode-hook)))
link|flag
That works a treat. Thank you. – sototozo Aug 18 at 15:38

Your Answer

Get an OpenID
or

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