From 545e6dadbeb9072ce6c3b4b1f0ac2ae302db7281 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sat, 14 Aug 2021 01:49:27 +0000
Subject: [PATCH] Reenable clang-format. Should be buffer-local now
---
config.org | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/config.org b/config.org
index 222d992..c85bb4f 100644
--- a/config.org
+++ b/config.org
@@ -986,7 +986,7 @@
company-dabbrev-code
company-irony)))
#+END_SRC
-**** COMMENT Clang-format
+**** Clang-format
Automatically format buffer on save.
#+BEGIN_SRC emacs-lisp
(when (file-exists-p "/usr/share/clang/clang-format.el")
@@ -999,12 +999,12 @@
"IndentCaseLabels: false}"))
(setq-default clang-format-style clang-format-linux-style)
(defun clang-format-on-save ()
- (add-hook 'before-save-hook 'clang-format-buffer))
- (add-hook 'c-mode-hook 'clang-format-on-save)
- (add-hook 'c++-mode-hook 'clang-format-on-save))
+ (add-hook 'before-save-hook 'clang-format-buffer nil t))
+ (add-hook 'c-mode-hook 'clang-format-on-save nil t)
+ (add-hook 'c++-mode-hook 'clang-format-on-save nil t))
#+END_SRC
*** emacs-lisp
-**** COMMENT company
+**** COMMENT Company
Add slime backend.
#+BEGIN_SRC emacs-lisp
(add-hook 'emacs-lisp-mode-hook 'company-mode)
--
Gitblit v1.10.0