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
Post a Comment