all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* making Flymake work with PHP
@ 2009-05-14 14:35 Ig0r
  2009-05-14 15:37 ` Lennart Borgman
       [not found] ` <mailman.7163.1242315464.31690.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Ig0r @ 2009-05-14 14:35 UTC (permalink / raw)
  To: help-gnu-emacs

Hello, GNU Emacs Community!
I'm new to emacs and I try to make Flymake work in php-mode.
I have nXhtml installed (it has its flymake)
I've took the flymake-php from:
http://sachachua.com/wp/2008/07/31/emacs-and-php-on-the-fly-syntax-checking-with-flymake/
and added those lines to my ~/.emacs

If I use M-x flymake-display-err-menu-for-current-line it displays an
error in format:
parse error
parse error

But in flymake-php I can see lines:
add-to-list 'flymake-err-line-patterns  '("\\(Parse\\|Fatal\\) error: +
\\(.*?\\) in \\(.*?\\) on line \\([0-9]+\\)$" 3 4 nil 2))

So PHP errors should look like:
"Parse | Fatal error ... in ....php  on line ..  "  ?

What may be the problem for that?

In my ~/.emacs I load nXhtml first:

;;nXHTML mode and all that comes with it (MuMaMo...)
(setq rng-schema-loader-alist '(("rnc" . rng-c-load-schema)))
(add-hook 'nxml-mode-hook 'rng-nxml-mode-init)
(add-hook 'nxml-mode-hook 'nxml-enable-unicode-char-name-sets)

(load "c:/program files/emacs-22.3/site-lisp/nxhtml/autostart.el")

(define-key global-map "\C-cd" 'flymake-display-err-menu-for-current-
line)
(define-key global-map "\C-cn" 'flymake-goto-next-error)

(require 'flymake)

(defun flymake-php-init ()
  "Use php to check the syntax of the current file."
  (let* ((temp (flymake-init-create-temp-buffer-copy 'flymake-create-
temp-inplace))
	 (local (file-relative-name temp (file-name-directory buffer-file-
name))))
    (list "php" (list "-f" local "-l"))))

(add-to-list 'flymake-err-line-patterns
  '("\\(Parse\\|Fatal\\) error: +\\(.*?\\) in \\(.*?\\) on line \\
([0-9]+\\)$" 3 4 nil 2))

(add-to-list 'flymake-allowed-file-name-masks '("\\.php$" flymake-php-
init))

(add-to-list 'flymake-allowed-file-name-masks '("\\.inc$" flymake-php-
init))

(add-hook 'php-mode-hook (lambda () (flymake-mode 1)))

Is someone familiar with this?


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-05-16 13:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14 14:35 making Flymake work with PHP Ig0r
2009-05-14 15:37 ` Lennart Borgman
     [not found] ` <mailman.7163.1242315464.31690.help-gnu-emacs@gnu.org>
2009-05-14 16:08   ` Ig0r
2009-05-14 18:58     ` Anselm Helbig
2009-05-14 21:17       ` Ig0r
2009-05-14 22:43         ` Lennart Borgman
     [not found]         ` <mailman.7179.1242341015.31690.help-gnu-emacs@gnu.org>
2009-05-15  0:25           ` Ig0r
2009-05-16 13:38             ` Ig0r

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.