├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── coffeelint.json ├── lib ├── expand-region.coffee ├── main.coffee └── selector.coffee ├── package.json ├── settings └── expand-region.cson └── spec ├── expand-region-spec.coffee └── fixtures └── sample.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/expand-region.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/lib/expand-region.coffee -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/selector.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/lib/selector.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/package.json -------------------------------------------------------------------------------- /settings/expand-region.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/settings/expand-region.cson -------------------------------------------------------------------------------- /spec/expand-region-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/spec/expand-region-spec.coffee -------------------------------------------------------------------------------- /spec/fixtures/sample.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aki77/atom-expand-region/HEAD/spec/fixtures/sample.coffee --------------------------------------------------------------------------------