├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── auto-encoding.cson ├── lib ├── auto-encoding.coffee └── main.coffee ├── menus └── auto-encoding.cson ├── package.json ├── spec └── auto-encoding-spec.coffee └── styles └── auto-encoding.less /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/auto-encoding.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/keymaps/auto-encoding.cson -------------------------------------------------------------------------------- /lib/auto-encoding.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/lib/auto-encoding.coffee -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /menus/auto-encoding.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/menus/auto-encoding.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/package.json -------------------------------------------------------------------------------- /spec/auto-encoding-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/spec/auto-encoding-spec.coffee -------------------------------------------------------------------------------- /styles/auto-encoding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-ishii/auto-encoding/HEAD/styles/auto-encoding.less --------------------------------------------------------------------------------