https://github.com/kristijanhusak/deoplete-phpactor
Phpactor integration for deoplete.nvim
https://github.com/kristijanhusak/deoplete-phpactor
deoplete neovim nvim phpactor vim
Last synced: 7 months ago
JSON representation
Phpactor integration for deoplete.nvim
- Host: GitHub
- URL: https://github.com/kristijanhusak/deoplete-phpactor
- Owner: kristijanhusak
- License: mit
- Created: 2018-04-13T23:05:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-12T13:32:58.000Z (over 5 years ago)
- Last Synced: 2025-09-01T20:52:31.817Z (7 months ago)
- Topics: deoplete, neovim, nvim, phpactor, vim
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 19
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deoplete-phpactor
[Phpactor](https://github.com/phpactor/phpactor) integration for [deoplete.nvim](https://github.com/Shougo/deoplete.nvim)
## Installation
Using [vim-plug](https://github.com/junegunn/vim-plug)
```
Plug 'Shougo/deoplete.nvim'
Plug 'phpactor/phpactor' , {'do': 'composer install', 'for': 'php'}
Plug 'kristijanhusak/deoplete-phpactor'
```
If you are using a custom setting for sources in deoplete don't forget:
```
call deoplete#custom#option('sources', {'php' : ['omni', 'phpactor', 'ultisnips', 'buffer']})
```
Add the phpactor source is important or phpactor itself is not running.