├── .gitignore ├── LICENSE ├── README.md └── rplugin └── python3 └── deoplete └── source └── clangx.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | doc/tags 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shougo/deoplete-clangx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shougo/deoplete-clangx/HEAD/README.md -------------------------------------------------------------------------------- /rplugin/python3/deoplete/source/clangx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shougo/deoplete-clangx/HEAD/rplugin/python3/deoplete/source/clangx.py --------------------------------------------------------------------------------