php - How to fix VIM omnifunc to work with $this->variable->__AUTOCOMPLETE__ -


how vim omnifunc work this:

$this->temp = new temp(); $this->temp-> // don't correct completion choices.... 

but works:

$temp = new temp(); $temp-> // right list of completion choices here.... 


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -