├── .editorconfig ├── .gibot.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── grammars ├── cfg.json └── sqf.json ├── index.coffee ├── keymaps └── language-arma-atom.cson ├── lib ├── build-project.coffee ├── open-latest-rpt-file.coffee └── optional-autocomplete.coffee ├── menus └── language-arma-atom.cson ├── package.json ├── rsc ├── ace3-doc │ ├── index.js │ └── package.json ├── armadoc.py ├── cbadoc.py ├── images │ ├── autocomplete.png │ ├── build_dev.png │ ├── open_latest_rpt.png │ ├── snippets.png │ └── syntax_highlighting.png ├── parseOperators.py └── retrieve-bis-fncs │ ├── hardcoded_descriptions.json │ ├── index.js │ └── package.json ├── settingsAvailable ├── language-sqf-functions-ace3.json ├── language-sqf-functions-bis.json ├── language-sqf-functions-cba.json ├── language-sqf-macros-ace3.json ├── language-sqf-macros-cba.json ├── language-sqf-native-commands.json └── language-sqf-native.json ├── snippetsAvailable ├── language-sqf-ace3.json ├── language-sqf-cba.json └── language-sqf-native.json └── spec └── sqf-spec.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gibot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/.gibot.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/README.md -------------------------------------------------------------------------------- /grammars/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/grammars/cfg.json -------------------------------------------------------------------------------- /grammars/sqf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/grammars/sqf.json -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/index.coffee -------------------------------------------------------------------------------- /keymaps/language-arma-atom.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/keymaps/language-arma-atom.cson -------------------------------------------------------------------------------- /lib/build-project.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/lib/build-project.coffee -------------------------------------------------------------------------------- /lib/open-latest-rpt-file.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/lib/open-latest-rpt-file.coffee -------------------------------------------------------------------------------- /lib/optional-autocomplete.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/lib/optional-autocomplete.coffee -------------------------------------------------------------------------------- /menus/language-arma-atom.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/menus/language-arma-atom.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/package.json -------------------------------------------------------------------------------- /rsc/ace3-doc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/ace3-doc/index.js -------------------------------------------------------------------------------- /rsc/ace3-doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/ace3-doc/package.json -------------------------------------------------------------------------------- /rsc/armadoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/armadoc.py -------------------------------------------------------------------------------- /rsc/cbadoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/cbadoc.py -------------------------------------------------------------------------------- /rsc/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/images/autocomplete.png -------------------------------------------------------------------------------- /rsc/images/build_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/images/build_dev.png -------------------------------------------------------------------------------- /rsc/images/open_latest_rpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/images/open_latest_rpt.png -------------------------------------------------------------------------------- /rsc/images/snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/images/snippets.png -------------------------------------------------------------------------------- /rsc/images/syntax_highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/images/syntax_highlighting.png -------------------------------------------------------------------------------- /rsc/parseOperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/parseOperators.py -------------------------------------------------------------------------------- /rsc/retrieve-bis-fncs/hardcoded_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/retrieve-bis-fncs/hardcoded_descriptions.json -------------------------------------------------------------------------------- /rsc/retrieve-bis-fncs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/retrieve-bis-fncs/index.js -------------------------------------------------------------------------------- /rsc/retrieve-bis-fncs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/rsc/retrieve-bis-fncs/package.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-functions-ace3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-functions-ace3.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-functions-bis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-functions-bis.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-functions-cba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-functions-cba.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-macros-ace3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-macros-ace3.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-macros-cba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-macros-cba.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-native-commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-native-commands.json -------------------------------------------------------------------------------- /settingsAvailable/language-sqf-native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/settingsAvailable/language-sqf-native.json -------------------------------------------------------------------------------- /snippetsAvailable/language-sqf-ace3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/snippetsAvailable/language-sqf-ace3.json -------------------------------------------------------------------------------- /snippetsAvailable/language-sqf-cba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/snippetsAvailable/language-sqf-cba.json -------------------------------------------------------------------------------- /snippetsAvailable/language-sqf-native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/snippetsAvailable/language-sqf-native.json -------------------------------------------------------------------------------- /spec/sqf-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acemod/language-arma-atom/HEAD/spec/sqf-spec.coffee --------------------------------------------------------------------------------