我如何让 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....
我如何让 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....