branch: elpa/nix-mode
commit fcbaf3e054c1520eebcdc9247d343159808e72ca
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Rename flycheck mode to "nix-flycheck".
---
nix-flycheck.el | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/nix-flycheck.el b/nix-flycheck.el
index aca5ce8b36..505c296410 100644
--- a/nix-flycheck.el
+++ b/nix-flycheck.el
@@ -33,15 +33,15 @@
(flycheck-def-args-var flycheck-nix-args (nix))
-(flycheck-define-checker nix
- "A syntax and evaluation checker for Nix using
nix-instantiate."
- :command ("nix-instantiate" "--eval" "--strict"
"--show-trace" (eval flycheck-nix-args) "-")
- :standard-input t
- :error-parser nix--parse-errors
- :modes (nix-mode)
- )
-
-(add-to-list 'flycheck-checkers 'nix)
+(flycheck-define-checker flycheck-nix
+ "A syntax and evaluation checker for Nix using nix-instantiate."
+ :command ("nix-instantiate" "--eval" "--strict" "--show-trace" (eval
flycheck-nix-args) "-")
+ :standard-input t
+ :error-parser nix--parse-errors
+ :modes (nix-mode)
+ )
+
+(add-to-list 'flycheck-checkers 'flycheck-nix)
(provide 'nix-flycheck)
;;; nix-flycheck.el ends here