├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lib └── fold-functions.coffee ├── menus └── fold-functions.cson ├── package.json └── spec ├── files ├── js-sample.js ├── php-closure.php └── php-oop.php └── fold-functions-spec.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/README.md -------------------------------------------------------------------------------- /lib/fold-functions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/lib/fold-functions.coffee -------------------------------------------------------------------------------- /menus/fold-functions.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/menus/fold-functions.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/package.json -------------------------------------------------------------------------------- /spec/files/js-sample.js: -------------------------------------------------------------------------------- 1 | function sum(a, b) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /spec/files/php-closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/spec/files/php-closure.php -------------------------------------------------------------------------------- /spec/files/php-oop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/spec/files/php-oop.php -------------------------------------------------------------------------------- /spec/fold-functions-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robballou/atom-fold-functions/HEAD/spec/fold-functions-spec.coffee --------------------------------------------------------------------------------