├── .eslintrc.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── conftest.py ├── keymaps └── autocomplete-ansible.json ├── libs ├── __init__.py ├── interpreters-lookup.js ├── log.js ├── main.js ├── parse_ansible.py └── provider.js ├── menus └── autocomplete-ansible.json ├── package.json ├── styles └── autocomplete-ansible.less ├── tests └── test_parse_ansible.py └── tox.ini /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keymaps/autocomplete-ansible.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/interpreters-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/libs/interpreters-lookup.js -------------------------------------------------------------------------------- /libs/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/libs/log.js -------------------------------------------------------------------------------- /libs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/libs/main.js -------------------------------------------------------------------------------- /libs/parse_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/libs/parse_ansible.py -------------------------------------------------------------------------------- /libs/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/libs/provider.js -------------------------------------------------------------------------------- /menus/autocomplete-ansible.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/package.json -------------------------------------------------------------------------------- /styles/autocomplete-ansible.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/styles/autocomplete-ansible.less -------------------------------------------------------------------------------- /tests/test_parse_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/tests/test_parse_ansible.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-hirokawa/atom-autocomplete-ansible/HEAD/tox.ini --------------------------------------------------------------------------------