├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── README_jp.md ├── info.txt ├── keymaps └── dynamic-macro.cson ├── lib └── atom-dynamic-macro.coffee ├── package.json └── spec ├── atom-dynamic-macro-spec.coffee └── spec-helper.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | npm-debug.log 4 | node_modules 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/README.md -------------------------------------------------------------------------------- /README_jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/README_jp.md -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/info.txt -------------------------------------------------------------------------------- /keymaps/dynamic-macro.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/keymaps/dynamic-macro.cson -------------------------------------------------------------------------------- /lib/atom-dynamic-macro.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/lib/atom-dynamic-macro.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/package.json -------------------------------------------------------------------------------- /spec/atom-dynamic-macro-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/spec/atom-dynamic-macro-spec.coffee -------------------------------------------------------------------------------- /spec/spec-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masui/atom-dynamic-macro/HEAD/spec/spec-helper.coffee --------------------------------------------------------------------------------