├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── completions.json ├── grammars └── angularjs.cson ├── keymaps └── angularjs.cson ├── lib ├── angularjs.coffee └── provider.coffee ├── package.json ├── screenshots ├── autocompletes.gif └── snippets.gif ├── snippets ├── html-templates.cson └── js-templates.cson ├── spec └── grammar-spec.coffee └── styles └── angularjs.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/README.md -------------------------------------------------------------------------------- /completions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/completions.json -------------------------------------------------------------------------------- /grammars/angularjs.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/grammars/angularjs.cson -------------------------------------------------------------------------------- /keymaps/angularjs.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/keymaps/angularjs.cson -------------------------------------------------------------------------------- /lib/angularjs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/lib/angularjs.coffee -------------------------------------------------------------------------------- /lib/provider.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/lib/provider.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/autocompletes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/screenshots/autocompletes.gif -------------------------------------------------------------------------------- /screenshots/snippets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/screenshots/snippets.gif -------------------------------------------------------------------------------- /snippets/html-templates.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/snippets/html-templates.cson -------------------------------------------------------------------------------- /snippets/js-templates.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/snippets/js-templates.cson -------------------------------------------------------------------------------- /spec/grammar-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/spec/grammar-spec.coffee -------------------------------------------------------------------------------- /styles/angularjs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/AngularJS-Atom/HEAD/styles/angularjs.less --------------------------------------------------------------------------------