PIV
PIV copied to clipboard
PHP Integration environment for Vim
I's hard to find doc for each part of PIV. So far, I still can't find phpdocumentor's help document. I try to find this more than five minutes. Is there...
The setting for "expandtab" is very much a personal, or in a lot of cases (such as mine) a corporate, decision. I really don't think it should be overidden by...
Quite often, on simple files, the code seems to be blocked: The 5 folds created appears in the statusbar, but the file doesn't appear yet. Hitting Ctrl+C solves the problem...
Not sure exactly where the problem is occuring, but if I use PIV, vim segfaults on large PHP files, and if I remove PIV, everything works fine. I just spent...
I just updated to vim 7.4, and found the syntax highlighting is screwed up. The most obvious is the highlighting throughout a comment, the \* are purple, the first line...
in ftplugin/php.vim:98 before Map C-H to search phpm, check php executable,like below: ``` if executable('phpm') inoremap :!phpm =expand("") endif ```
This happens on Mac OS Lion 10.7.3 when editing a PHP file: "copyswf.php" 56L, 1411C Error detected while processing /.../PIV/syntax/php.vim: line 63: E108: No such variable: "b:current_syntax" The fix is...
I tracked down this issue to be the omission of these in the file PIV/after/ftplugin/php.vim The fix is simply to add them to b:match_words: if exists("loaded_matchit") let b:match_skip = 's:comment|string'...
I have been profiling the Vim start-up time of PHP files on my computer, and observed that the EnablePHPFolds function in PIV is a major contributor. I am loading a...
This plugin bundle looks great, but it seems to be slowing down vim startup by about 15 seconds or more on my Windows7x64 quadcore+ssd pc. Does anyone have an idea...