How to disable Emacs-Flymake for html mode

后端 未结 4 656
你的背包
你的背包 2021-02-02 10:02

Here is my flymake setup in .emacs file:

 (when (load \"flymake\" t) 
         (defun flymake-pyflakes-init () 
           (let* ((temp-file (flymake-init-create         


        
4条回答
  •  故里飘歌
    2021-02-02 10:40

    OK I got it. here is what I did: first of all I found flymake.el file.(If you dont have it you probably have flymake.elc file under emacs installation.In that case just copy flymake.el file under your load path so it will be used instead of compiled version(.elc file) under insallation). than I found following function and commented .xml and .html bindings.

    (defcustom flymake-allowed-file-name-masks
      '(("\\.\\(?:c\\(?:pp\\|xx\\|\\+\\+\\)?\\|CC\\)\\'" flymake-simple-make-init)
        ;("\\.xml\\'" flymake-xml-init)
        ;("\\.html?\\'" flymake-xml-init)
        ("\\.cs\\'" flymake-simple-make-init)
        ("\\.p[ml]\\'" flymake-perl-init)
        ("\\.php[345]?\\'" flymake-php-init)
        ("\\.h\\'" flymake-master-make-header-init flymake-master-cleanup)
        ("\\.java\\'" flymake-simple-make-java-init flymake-simple-java-cleanup)
        ("[0-9]+\\.tex\\'" flymake-master-tex-init flymake-master-cleanup)
        ("\\.tex\\'" flymake-simple-tex-init)
        ("\\.idl\\'" flymake-simple-make-init)
        ;; ("\\.cpp\\'" 1)
        ;; ("\\.java\\'" 3)
        ;; ("\\.h\\'" 2 ("\\.cpp\\'" "\\.c\\'")
        ;; ("[ \t]*#[ \t]*include[ \t]*\"\\([\w0-9/\\_\.]*[/\\]*\\)\\(%s\\)\"" 1 2))
        ;; ("\\.idl\\'" 1)
        ;; ("\\.odl\\'" 1)
        ;; ("[0-9]+\\.tex\\'" 2 ("\\.tex\\'")
        ;; ("[ \t]*\\input[ \t]*{\\(.*\\)\\(%s\\)}" 1 2 ))
        ;; ("\\.tex\\'" 1)
        )
    

    Other comment outed lines was already there. Now flymake does not work for html and xml files

提交回复
热议问题