branch: elpa/jade-mode
commit 936b4a974bcaa765d5a8a342f4a17eb39a951214
Author: Robert O'Connor <[email protected]>
Commit: Robert O'Connor <[email protected]>
Remove flymake mentions from the README
---
README.md | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/README.md b/README.md
index e85856ecfe..13a81fb9ca 100644
--- a/README.md
+++ b/README.md
@@ -73,24 +73,4 @@ Add the following lines to any of your initialization files
[Flycheck][] now has support for jade files. Currently only handles errors.
-### Flymake support
-
-[Flycheck][] is the successor to Flymake, however if you want to add flymake
support for jade files:
-
- (defun flymake-jade-init ()
- (let* ((temp-file (flymake-init-create-temp-buffer-copy
- 'flymake-create-temp-intemp))
- (local-file (file-relative-name
- temp-file
- (file-name-directory buffer-file-name)))
- (arglist (list local-file)))
- (list "jade" arglist)))
- (setq flymake-err-line-patterns
- (cons '("\\(.*\\): \\(.+\\):\\([[:digit:]]+\\)$"
- 2 3 nil 1)
- flymake-err-line-patterns))
- (add-to-list 'flymake-allowed-file-name-masks
- '("\\.jade\\'" flymake-jade-init))
-
-
[Flycheck]: https://github.com/flycheck/flycheck