blob: 1277885996cefe4288d6786263de85fbcb35ca5b [file] [log] [blame]
;;; Clang-format emacs integration for use with C/Objective-C/C++.
;; This defines a function clang-format-region that you can bind to a key.
;; A minimal .emacs would contain:
;;
;; (load "<path-to-clang>/tools/clang/clang-format/clang-format.el")
;; (global-set-key [C-M-tab] 'clang-format-region)
;;
;; Depending on your configuration and coding style, you might need to modify
;; 'style' and 'binary' below.
(defun clang-format-region ()
(interactive)
(let ((orig-window-start (window-start))
(orig-point (point))
(binary "clang-format")
(style "LLVM"))
(if mark-active
(setq beg (1- (region-beginning))
end (1- (region-end)))
(setq beg (1- (line-beginning-position))
end (1- (line-end-position))))
(call-process-region (point-min) (point-max) "clang-format" t t nil
"-offset" (number-to-string beg)
"-length" (number-to-string (- end beg))
"-style" style)
(goto-char orig-point)
(set-window-start (selected-window) orig-window-start)))