From 8e849c660bc6f37d566a46a36f8d4cbe5ee6282e Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 13 Aug 2012 02:32:25 +0100 Subject: [PATCH] Load up flymake properly in coffee and haml modes --- mode-customizations/coffee-mode.el | 1 + mode-customizations/haml-mode.el | 1 + 2 files changed, 2 insertions(+) diff --git a/mode-customizations/coffee-mode.el b/mode-customizations/coffee-mode.el index 82ea9cc..0040991 100644 --- a/mode-customizations/coffee-mode.el +++ b/mode-customizations/coffee-mode.el @@ -4,6 +4,7 @@ (defun customizations-for-coffee-mode () (interactive) (flyspell-prog-mode) + (flymake-coffee-load) (linum-mode t) (fci-mode) (auto-complete-mode) diff --git a/mode-customizations/haml-mode.el b/mode-customizations/haml-mode.el index c1237f8..a0c98d3 100644 --- a/mode-customizations/haml-mode.el +++ b/mode-customizations/haml-mode.el @@ -3,6 +3,7 @@ (defun customizations-for-haml-mode () (interactive) (flyspell-prog-mode) + (flymake-haml-load) (linum-mode t) (fci-mode) (auto-complete-mode)