├── .gitignore ├── LICENSE ├── README.md └── rplugin └── python3 └── deoplete └── source └── phpactor.py /.gitignore: -------------------------------------------------------------------------------- 1 | .mypy_cache 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristijanhusak/deoplete-phpactor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristijanhusak/deoplete-phpactor/HEAD/README.md -------------------------------------------------------------------------------- /rplugin/python3/deoplete/source/phpactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristijanhusak/deoplete-phpactor/HEAD/rplugin/python3/deoplete/source/phpactor.py --------------------------------------------------------------------------------