标签: php vim omnicomplete
如何让VIM omnifunc使用它:
$this->temp = new Temp(); $this->temp-> // i don't get the correct completion choices....
但是这个工作:
$temp = new Temp(); $temp-> // i get the right list of completion choices here....