├── .gitignore ├── .travis.yml ├── Cask ├── Makefile ├── README.md ├── company-web-html.el ├── company-web-jade.el ├── company-web-slim.el ├── company-web.el ├── features ├── candidates-html-emmet.feature ├── candidates-html.feature ├── candidates-jade.feature ├── candidates-pug.feature ├── candidates-slim.feature ├── candidates-web.feature ├── step-definitions │ ├── company-web-html-steps.el │ ├── company-web-jade-steps.el │ └── company-web-slim-steps.el └── support │ └── env.el └── image └── emmet.png /.gitignore: -------------------------------------------------------------------------------- 1 | .cask 2 | *~ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/README.md -------------------------------------------------------------------------------- /company-web-html.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/company-web-html.el -------------------------------------------------------------------------------- /company-web-jade.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/company-web-jade.el -------------------------------------------------------------------------------- /company-web-slim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/company-web-slim.el -------------------------------------------------------------------------------- /company-web.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/company-web.el -------------------------------------------------------------------------------- /features/candidates-html-emmet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-html-emmet.feature -------------------------------------------------------------------------------- /features/candidates-html.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-html.feature -------------------------------------------------------------------------------- /features/candidates-jade.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-jade.feature -------------------------------------------------------------------------------- /features/candidates-pug.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-pug.feature -------------------------------------------------------------------------------- /features/candidates-slim.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-slim.feature -------------------------------------------------------------------------------- /features/candidates-web.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/candidates-web.feature -------------------------------------------------------------------------------- /features/step-definitions/company-web-html-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/step-definitions/company-web-html-steps.el -------------------------------------------------------------------------------- /features/step-definitions/company-web-jade-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/step-definitions/company-web-jade-steps.el -------------------------------------------------------------------------------- /features/step-definitions/company-web-slim-steps.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/step-definitions/company-web-slim-steps.el -------------------------------------------------------------------------------- /features/support/env.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/features/support/env.el -------------------------------------------------------------------------------- /image/emmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osv/company-web/HEAD/image/emmet.png --------------------------------------------------------------------------------