├── .gitignore ├── .travis.yml ├── Cask ├── README.rst ├── company-ghc.el ├── features ├── candidates.feature ├── comp-in-module.feature ├── hoogle-search.feature ├── prefix.feature ├── scan-modules.feature ├── step-definitions │ └── company-ghc-steps.el └── support │ └── env.el └── images ├── doc-buffer.png ├── hoogle-search.png ├── impspec.png ├── in-module.png ├── keyword.png ├── language.png ├── module.png ├── option.png ├── pragma.png ├── qualified.png └── showinfo.png /.gitignore: -------------------------------------------------------------------------------- 1 | /.cask/ 2 | /.ecukes-failing-scenarios 3 | *.elc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/Cask -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/README.rst -------------------------------------------------------------------------------- /company-ghc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/company-ghc.el -------------------------------------------------------------------------------- /features/candidates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/candidates.feature -------------------------------------------------------------------------------- /features/comp-in-module.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/comp-in-module.feature -------------------------------------------------------------------------------- /features/hoogle-search.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/hoogle-search.feature -------------------------------------------------------------------------------- /features/prefix.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/prefix.feature -------------------------------------------------------------------------------- /features/scan-modules.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/scan-modules.feature -------------------------------------------------------------------------------- /features/step-definitions/company-ghc-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/step-definitions/company-ghc-steps.el -------------------------------------------------------------------------------- /features/support/env.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/features/support/env.el -------------------------------------------------------------------------------- /images/doc-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/doc-buffer.png -------------------------------------------------------------------------------- /images/hoogle-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/hoogle-search.png -------------------------------------------------------------------------------- /images/impspec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/impspec.png -------------------------------------------------------------------------------- /images/in-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/in-module.png -------------------------------------------------------------------------------- /images/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/keyword.png -------------------------------------------------------------------------------- /images/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/language.png -------------------------------------------------------------------------------- /images/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/module.png -------------------------------------------------------------------------------- /images/option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/option.png -------------------------------------------------------------------------------- /images/pragma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/pragma.png -------------------------------------------------------------------------------- /images/qualified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/qualified.png -------------------------------------------------------------------------------- /images/showinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iquiw/company-ghc/HEAD/images/showinfo.png --------------------------------------------------------------------------------