├── .gitignore ├── .npmignore ├── Cakefile ├── LICENSE ├── README.md ├── lib ├── atom-syntax-tools.coffee └── main.js ├── package.json └── spec └── atom-syntax-tools-spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | index.js 2 | node_modules 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | Cakefile 3 | src 4 | index.js 5 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/README.md -------------------------------------------------------------------------------- /lib/atom-syntax-tools.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/lib/atom-syntax-tools.coffee -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/package.json -------------------------------------------------------------------------------- /spec/atom-syntax-tools-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klorenz/atom-syntax-tools/HEAD/spec/atom-syntax-tools-spec.coffee --------------------------------------------------------------------------------