vote up 0 vote down star

I usually have to deal with a lot of people sending me Windows files and I'm tired of having to convert them by hand, usually by doing:

 C-x RET f unix RET

Is there any way to add a global hook (for all modes) to automatically do this on saves?

flag

1 Answer

vote up 5 vote down check
(defun unix-newline () (set-buffer-file-coding-system 'undecided-unix))
(add-hook 'before-save-hook 'unix-newline)

I also like:

(add-hook 'before-save-hook 'delete-trailing-whitespace)
link|flag

Your Answer

Get an OpenID
or

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