├── .gitattributes ├── .gitignore ├── .travis.yml ├── Cask ├── README.rst ├── company-restclient.el └── features ├── candidates.feature ├── post-completion.feature ├── prefix.feature ├── step-definitions └── company-restclient-steps.el └── support └── env.el /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.cask 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/Cask -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/README.rst -------------------------------------------------------------------------------- /company-restclient.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/company-restclient.el -------------------------------------------------------------------------------- /features/candidates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/features/candidates.feature -------------------------------------------------------------------------------- /features/post-completion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/features/post-completion.feature -------------------------------------------------------------------------------- /features/prefix.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/features/prefix.feature -------------------------------------------------------------------------------- /features/step-definitions/company-restclient-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/features/step-definitions/company-restclient-steps.el -------------------------------------------------------------------------------- /features/support/env.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-restclient/HEAD/features/support/env.el --------------------------------------------------------------------------------