├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── demo ├── .editorconfig ├── .vscode │ └── settings.json ├── checkbox_with_label.test.js ├── clojure.clj ├── clojurescript.cljs ├── cplusplus-header.h ├── cplusplus-source.cc ├── css.css ├── elm.elm ├── go.go ├── html.html ├── issue-91.jsx ├── issue-91.tsx ├── js.js ├── json.json ├── markdown.md ├── php.php ├── powershell.ps1 ├── pug.pug ├── python.py ├── react.js ├── ruby.rb ├── statelessfunctionalreact.js ├── tsx.tsx ├── typescript.ts ├── vuedemo.vue └── yml.yml ├── icon.png ├── package.json ├── screenshots ├── overnight-italics.png ├── overnight-slumber-italics.png ├── overnight-slumber.png └── overnight.png ├── themes ├── Overnight-Slumber-italic.json ├── Overnight-Slumber.json ├── Overnight-color-theme-italic.json └── Overnight-color-theme.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/README.md -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.linting.enabled": false 3 | } -------------------------------------------------------------------------------- /demo/checkbox_with_label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/checkbox_with_label.test.js -------------------------------------------------------------------------------- /demo/clojure.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/clojure.clj -------------------------------------------------------------------------------- /demo/clojurescript.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/clojurescript.cljs -------------------------------------------------------------------------------- /demo/cplusplus-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/cplusplus-header.h -------------------------------------------------------------------------------- /demo/cplusplus-source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/cplusplus-source.cc -------------------------------------------------------------------------------- /demo/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/css.css -------------------------------------------------------------------------------- /demo/elm.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/elm.elm -------------------------------------------------------------------------------- /demo/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/go.go -------------------------------------------------------------------------------- /demo/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/html.html -------------------------------------------------------------------------------- /demo/issue-91.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/issue-91.jsx -------------------------------------------------------------------------------- /demo/issue-91.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/issue-91.tsx -------------------------------------------------------------------------------- /demo/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/js.js -------------------------------------------------------------------------------- /demo/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/json.json -------------------------------------------------------------------------------- /demo/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/markdown.md -------------------------------------------------------------------------------- /demo/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/php.php -------------------------------------------------------------------------------- /demo/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/powershell.ps1 -------------------------------------------------------------------------------- /demo/pug.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/pug.pug -------------------------------------------------------------------------------- /demo/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/python.py -------------------------------------------------------------------------------- /demo/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/react.js -------------------------------------------------------------------------------- /demo/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/ruby.rb -------------------------------------------------------------------------------- /demo/statelessfunctionalreact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/statelessfunctionalreact.js -------------------------------------------------------------------------------- /demo/tsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/tsx.tsx -------------------------------------------------------------------------------- /demo/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/typescript.ts -------------------------------------------------------------------------------- /demo/vuedemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/vuedemo.vue -------------------------------------------------------------------------------- /demo/yml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/demo/yml.yml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/overnight-italics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/screenshots/overnight-italics.png -------------------------------------------------------------------------------- /screenshots/overnight-slumber-italics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/screenshots/overnight-slumber-italics.png -------------------------------------------------------------------------------- /screenshots/overnight-slumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/screenshots/overnight-slumber.png -------------------------------------------------------------------------------- /screenshots/overnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/screenshots/overnight.png -------------------------------------------------------------------------------- /themes/Overnight-Slumber-italic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/themes/Overnight-Slumber-italic.json -------------------------------------------------------------------------------- /themes/Overnight-Slumber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/themes/Overnight-Slumber.json -------------------------------------------------------------------------------- /themes/Overnight-color-theme-italic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/themes/Overnight-color-theme-italic.json -------------------------------------------------------------------------------- /themes/Overnight-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/themes/Overnight-color-theme.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cevr/overnight/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------