From b3277d190e7438692a727451d6b1b9251d244fea Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Thu, 26 Sep 2013 14:34:10 +0300 Subject: [PATCH] Add a comment --- modules/prelude-programming.el | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/prelude-programming.el b/modules/prelude-programming.el index df0d3f3..b52fb9c 100644 --- a/modules/prelude-programming.el +++ b/modules/prelude-programming.el @@ -130,6 +130,7 @@ This functions should be added to the hooks of major modes for programming." (add-hook 'prog-mode-hook (lambda () (run-hooks 'prelude-prog-mode-hook))) +;; enable on-the-fly syntax checking (if (fboundp 'global-flycheck-mode) (global-flycheck-mode +1) (add-hook 'prog-mode-hook 'flycheck-mode))