2

このエラーが発生しています。

Error (flymake): Flymake: Failed to launch syntax check process 'php' with args (-f test_flymake.php -l): Searching for program: no such file or directory, php. Flymake will be switched OFF

私は Windows 7 で emacs 24 GNU Emacs 24.1.1 (i386-mingw-nt6.1.7601) を使用しています。http://sachachua.com

これは私の .emacs の現在関連する部分です。それを機能させるにはどうすればよいですか。

(add-to-list 'load-path "C:/Users/renshaw family/AppData/Roaming/.emacs.d/elpa/flymake-0.4.11")
(require 'flymake)
(global-set-key [f3] 'flymake-display-err-menu-for-current-line)
(global-set-key [f4] 'flymake-goto-next-error)

;;(require 'flymake-php)

(require 'zencoding-mode)
(add-hook 'sgml-mode-hook 'zencoding-mode) ;; Auto-start on any markup modes

(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))

;; Drupal-type extensions
(add-to-list 'flymake-allowed-file-name-masks '("\\.module$" flymake-php-init))
(add-to-list 'flymake-allowed-file-name-masks '("\\.install$" flymake-php-init))
(add-to-list 'flymake-allowed-file-name-masks '("\\.inc$" flymake-php-init))
(add-to-list 'flymake-allowed-file-name-masks '("\\.engine$" flymake-php-init))

(add-hook 'php-mode-hook (lambda () (flymake-mode 1)))
(define-key php-mode-map '[M-S-up] 'flymake-goto-prev-error)
(define-key php-mode-map '[M-S-down] 'flymake-goto-next-error)

編集:

ubuntu 12.04でもこれを試してみましたが、同じエラーが発生しました。

4

1 に答える 1

1

flymake が PHP インタープリターを見つけられないようです。PHP の場所に関する明示的なヒントを追加してみてください。

これを行う 1 つの方法は、次の defun を .emacs に追加することです。

(defun my-flymake-get-php-cmdline  (source base-dir)
  "Gets the command line invocation needed for running a flymake
   session in a PHP buffer. This gets called by flymake itself."
    (list "C:\Path\to\PHP\php.exe"
    ;; Or the path to the PHP CLI executable on the Ubuntu machine you mentioned.
      (list "-f" source  "-l")))

次に、現在使用している flymate-php-init を次のように変更します。

(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))))
  (get-cmdline-f 'my-flymake-get-php-cmdline)))

このアドバイスは、PHP 用の Windows で flymake を使用している他の誰かからのこの回答に大きく基づいています。彼らの状況はあなたの状況と似ているため、その回答も役立つかもしれません。

于 2012-07-26T00:33:09.847 に答える