Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
8k views

Making php-mode (and other cc-mode derived modes) Compatible with Emacs 23

I am using Emacs 23 and php-mode.el 1.5.0. When I have this in my .emacs: (require 'php-mode) I get this error message when Emacs starts: Warning (initialization): An error occurred while loading ...
5
votes
3answers
570 views

Let's share our emacs php configs

I'm pretty new to emacs and I think it would be nice if you share your config that you use in your everyday php work.
2
votes
2answers
152 views

Emacs php-mode and paredit

I would like to use paredit in combination with php-mode, but it doesn't add a closing curly bracket "}". Might this have something todo with the fact that an electric brace is bound to "{"? And how ...
2
votes
1answer
909 views

Emacs23 php-mode problem

I keep getting this error and similar errors while using php-mode on Emacs23 on Ubuntu: Debugger entered--Lisp error: (void-function php-template-if-hook) php-template-if-hook() abbrev-insert(if ...
1
vote
1answer
82 views

Emacs yet another snippet extension php-mode

I'm new to using emacs, and I am currently having some trouble with the 'yet another snippet' extension. I am trying to do some work using the php-mode major mode. Unfortunately, it is based on the ...
1
vote
2answers
209 views

How to compose region like “<?php foo; bar; ?>”

I want fold php block in php template file. <html> <?php $bar = foo(); echo $bar; ?> <h1><?php echo $title; ?></h1> </html> to >>>> ...
0
votes
1answer
110 views

Double indent when using Emacs php-mode

My problem is that with curly brackets in new lines, I am getting and additional indent, as shown in the code listed below. I am using emacs 22.2 on debian-lenny, I have instaled php-mode.el from ...
0
votes
1answer
52 views

Emacs php-mode font-lock properties are not applied to certain chars

For example variable dollar signs. php-mode.el line 1087: '("\\$\\(\\(?:\\sw\\|\\s_\\)+\\)" (1 font-lock-variable-name-face)) ; $variable If I'm not mistaken the regexp should match $variable ...
0
votes
1answer
215 views

Object indentation in emacs php-mode

I would like to have this indentation like Zend does on objects: $this->getResponse() ->appendBody('Hello World'); But what I have now is: $this->getResponse() ...
0
votes
1answer
216 views

how do I get hs-minor-mode to load automatically on php-mode in emacs?

For my favorite modes, I use the following snippet to load hs-minor-mode on startup: (add-hook '____-mode-hook 'hs-minor-mode) So far it's gotten working on css-mode, perl-mode, sh-mode (bash), and ...