├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── keymaps └── toggle-quotes.cson ├── lib ├── config-schema.json ├── main.js ├── string-helper.js └── toggle-quotes.js ├── menus └── toggle-quotes.cson ├── package.json └── spec └── toggle-quotes-spec.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/toggle-quotes.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/keymaps/toggle-quotes.cson -------------------------------------------------------------------------------- /lib/config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/lib/config-schema.json -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/string-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/lib/string-helper.js -------------------------------------------------------------------------------- /lib/toggle-quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/lib/toggle-quotes.js -------------------------------------------------------------------------------- /menus/toggle-quotes.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/menus/toggle-quotes.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/package.json -------------------------------------------------------------------------------- /spec/toggle-quotes-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/toggle-quotes/HEAD/spec/toggle-quotes-spec.js --------------------------------------------------------------------------------