When I open an HTML file with emacs (and nXhtml,) I get the following error from flymake:
Error (flymake): Flymake: Failed to launch syntax check process 'xml' with args (val /home/ABC/Downloads/capitals_flymake.html): Searching for program: no such file or directory, xml. Flymake will be switched OFF
I assume this means that I need to have a program installed that can be run at the command line with xml
. However, I have not been able to find out what this program is in the documentation.
I am also currently using the following gist (with a modification suggested by one of the commenters to change equal
to >=
) to disable the Mumamo buffer filenames warning in my .emacs
:
;; Workaround the annoying warnings:
;; Warning (mumamo-per-buffer-local-vars):
;; Already 'permanent-local t: buffer-file-name
(when
(and
(>= emacs-major-version 24)
(>= emacs-minor-version 2))
(eval-after-load "mumamo"
'(setq mumamo-per-buffer-local-vars
(delq 'buffer-file-name mumamo-per-buffer-local-vars))))
But, I am not sure if that is relevant.
How can I get flymake to work with nXhtml? I am currently on GNU Emacs 24.3.1.
I have this in my
.emacs
for live validating of XML and HTML, see if this would help.Also, re
xml
executable: it might be this one http://packages.ubuntu.com/quantal/amd64/xml2/filelist from how it looks... also you can tryapt-file /usr/bin/xml
(I'm not sure ifapt-file
is installed by default, if not, thenapt-get install apt-file
). Also, maybe this would help: http://www.emacswiki.org/emacs/FlyMake . I couldn't find any setting particular tonXhtml
that does something to flymake.