vote up 2 vote down star
1

Using vim 7.1, I recently heard you can debug php in VI. But how?

flag

67% accept rate

3 Answers

vote up 2 vote down check

Here is a web tutorial on how to use vim as a PHP debugging environment.

link|flag
vote up 2 vote down

See the link on using xdebug with vim that someone else posted for a full debugger, but as an extra tip you can do this from vim to run syntax check on the current PHP script:

:!php -l %

I have this assigned to my F5 key by putting this in my .vimrc file (in your home(~) directory):

nmap <F5> :! php5 -l %<CR>
link|flag
vote up 1 vote down

If you are referring to debugging vim script, vim -D is a first step.

More details in Debugging Vim Scripts.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.