taoso / phpcd.vim

phpcd - A Intelligent/Smart PHP Complete Daemon Plugin for Vim/NeoVim
https://github.com/taoso/phpcd.vim
Apache License 2.0
389 stars 45 forks source link

autocompletition for class methods doesn't work if methods calls are defined on new lines #177

Closed fabiosal closed 3 years ago

fabiosal commented 5 years ago

It seems that calls class methods on new lines doesn't trigger phpcd methods autocompletition

       ...
        $this
            ->setDescription('to do')
            ->setHelp('to do')
            ->addArgument('arg1', InputArgument::OPTIONAL, 'Argument description')
            ->addOption('option1', null, InputOption::VALUE_NONE, 'Option description')
        ;
alexdrupal commented 5 years ago

For me too...

alexdrupal commented 4 years ago

Any update on this?