├── .coffeelintignore ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── lock.yml ├── move.yml ├── no-response.yml └── stale.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SUPPORT.md ├── apm ├── README.md ├── package-lock.json └── package.json ├── atom.sh ├── benchmarks ├── benchmark-runner.js ├── text-editor-large-file-construction.bench.js └── text-editor-long-lines.bench.js ├── coffeelint.json ├── docs ├── README.md ├── apm-rest-api.md ├── build-instructions │ ├── build-status.md │ ├── linux.md │ ├── macOS.md │ └── windows.md ├── contributing-to-packages.md ├── contributing.md ├── native-profiling.md └── rfcs │ ├── 000-template.md │ ├── 001-updatable-bundled-packages.md │ ├── 002-atom-nightly-releases.md │ ├── 003-consolidate-core-packages.md │ ├── 004-decoration-ordering.md │ ├── 005-grammar-comment-delims.md │ ├── 005-pretranspile.md │ └── 005-scope-naming.md ├── dot-atom ├── .gitignore ├── init.coffee ├── keymap.cson ├── packages │ └── README.md ├── snippets.cson └── styles.less ├── exports ├── atom.js ├── clipboard.js ├── ipc.js ├── remote.js ├── shell.js └── web-frame.js ├── keymaps ├── base.cson ├── darwin.cson ├── linux.cson └── win32.cson ├── menus ├── darwin.cson ├── linux.cson └── win32.cson ├── package.json ├── packages ├── README.md ├── about │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── about.js │ │ ├── components │ │ │ ├── about-status-bar.js │ │ │ ├── about-view.js │ │ │ ├── atom-logo.js │ │ │ └── update-view.js │ │ ├── etch-component.js │ │ ├── main.js │ │ └── update-manager.js │ ├── package-lock.json │ ├── package.json │ ├── spec │ │ ├── about-spec.js │ │ ├── about-status-bar-spec.js │ │ ├── helpers │ │ │ └── async-spec-helpers.js │ │ ├── mocks │ │ │ └── updater.js │ │ ├── update-manager-spec.js │ │ └── update-view-spec.js │ └── styles │ │ ├── about.less │ │ └── variables.less ├── atom-dark-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── editor.less │ │ ├── syntax-legacy │ │ └── _base.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ ├── css.less │ │ └── html.less ├── atom-dark-ui │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── atom.less │ │ ├── buttons.less │ │ ├── dropdowns.less │ │ ├── editor.less │ │ ├── git.less │ │ ├── lists.less │ │ ├── messages.less │ │ ├── nav.less │ │ ├── overlays.less │ │ ├── panels.less │ │ ├── panes.less │ │ ├── progress.less │ │ ├── sites.less │ │ ├── tabs.less │ │ ├── text.less │ │ ├── tooltips.less │ │ ├── tree-view.less │ │ ├── ui-mixins.less │ │ ├── ui-variables.less │ │ └── utilities.less ├── atom-light-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── editor.less │ │ ├── syntax-legacy │ │ └── _base.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ └── css.less ├── atom-light-ui │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── atom.less │ │ ├── buttons.less │ │ ├── editor.less │ │ ├── git.less │ │ ├── lists.less │ │ ├── messages.less │ │ ├── overlays.less │ │ ├── panels.less │ │ ├── panes.less │ │ ├── progress.less │ │ ├── sites.less │ │ ├── tabs.less │ │ ├── text.less │ │ ├── tooltips.less │ │ ├── tree-view.less │ │ ├── ui-mixins.less │ │ ├── ui-variables.less │ │ └── utilities.less ├── autoflow │ ├── .coffeelintignore │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── coffeelint.json │ ├── keymaps │ │ └── autoflow.cson │ ├── lib │ │ └── autoflow.coffee │ ├── menus │ │ └── autoflow.cson │ ├── package.json │ └── spec │ │ └── autoflow-spec.coffee ├── base16-tomorrow-dark-theme │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── cs.less │ │ └── json.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ └── css.less ├── base16-tomorrow-light-theme │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── cs.less │ │ └── json.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ └── css.less ├── dalek │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── dalek.js │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ └── test │ │ ├── dalek.test.js │ │ └── runner.js ├── deprecation-cop │ ├── .coffeelintignore │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── coffeelint.json │ ├── lib │ │ ├── deprecation-cop-status-bar-view.coffee │ │ ├── deprecation-cop-view.js │ │ └── main.js │ ├── package.json │ ├── spec │ │ ├── deprecation-cop-spec.coffee │ │ ├── deprecation-cop-status-bar-view-spec.coffee │ │ └── deprecation-cop-view-spec.coffee │ └── styles │ │ └── deprecation-cop.less ├── dev-live-reload │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── keymaps │ │ └── dev-live-reload.cson │ ├── lib │ │ ├── base-theme-watcher.js │ │ ├── main.js │ │ ├── package-watcher.js │ │ ├── ui-watcher.js │ │ └── watcher.js │ ├── menus │ │ └── dev-live-reload.cson │ ├── package.json │ └── spec │ │ ├── async-spec-helpers.js │ │ ├── dev-live-reload-spec.js │ │ ├── fixtures │ │ ├── package-with-index │ │ │ └── index.coffee │ │ ├── package-with-styles-folder │ │ │ ├── package.cson │ │ │ └── styles │ │ │ │ ├── 3.css │ │ │ │ └── sub │ │ │ │ ├── 1.css │ │ │ │ └── 2.less │ │ ├── package-with-styles-manifest │ │ │ ├── package.cson │ │ │ └── styles │ │ │ │ ├── 1.css │ │ │ │ ├── 2.less │ │ │ │ └── 3.css │ │ ├── packages │ │ │ ├── index.less │ │ │ ├── package.cson │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── 1.css │ │ │ │ ├── 2.less │ │ │ │ ├── 3.css │ │ │ │ ├── first.less │ │ │ │ ├── last.less │ │ │ │ ├── second.less │ │ │ │ └── ui-variables.less │ │ ├── static │ │ │ └── atom.less │ │ ├── theme-with-index-less │ │ │ ├── index.less │ │ │ └── package.json │ │ ├── theme-with-multiple-imported-files │ │ │ ├── index.less │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── first.less │ │ │ │ ├── last.less │ │ │ │ ├── second.less │ │ │ │ └── ui-variables.less │ │ ├── theme-with-package-file │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── first.css │ │ │ │ ├── last.css │ │ │ │ └── second.less │ │ ├── theme-with-syntax-variables │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ └── editor.less │ │ └── theme-with-ui-variables │ │ │ ├── package.json │ │ │ └── styles │ │ │ ├── editor.less │ │ │ └── ui-variables.less │ │ └── ui-watcher-spec.js ├── exception-reporting │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── main.js │ │ └── reporter.js │ ├── package.json │ └── spec │ │ └── reporter-spec.js ├── git-diff │ ├── LICENSE.md │ ├── README.md │ ├── keymaps │ │ └── git-diff.cson │ ├── lib │ │ ├── diff-list-view.js │ │ ├── git-diff-view.js │ │ ├── helpers.js │ │ └── main.js │ ├── menus │ │ └── git-diff.cson │ ├── package.json │ ├── spec │ │ ├── diff-list-view-spec.js │ │ ├── fixtures │ │ │ └── working-dir │ │ │ │ ├── git.git │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── index │ │ │ │ ├── objects │ │ │ │ │ ├── 90 │ │ │ │ │ │ └── 820108a054b6f49c0d21031313244b6f7d69dc │ │ │ │ │ ├── 06 │ │ │ │ │ │ └── 5a272b55ec2ee84530dffd60b6869f7bf5d99c │ │ │ │ │ ├── 3e │ │ │ │ │ │ └── 715502b971d4f8282d1e05a8ccfad6f7037910 │ │ │ │ │ ├── 8e │ │ │ │ │ │ └── ab2e81eb8dea81ad08694c7b30ae165af89c8e │ │ │ │ │ ├── e7 │ │ │ │ │ │ └── fd5b055dcdaa93ad8f9d63ca8db5330537105f │ │ │ │ │ ├── f1 │ │ │ │ │ │ └── 4149b7b38a0a972c46557877caff6c9fe76476 │ │ │ │ │ └── fb │ │ │ │ │ │ └── 33b0b43b20b7f9de1bca79e192fa2e30dbeb6b │ │ │ │ └── refs │ │ │ │ │ └── heads │ │ │ │ │ └── master │ │ │ │ ├── sample.js │ │ │ │ └── sample.txt │ │ ├── git-diff-spec.js │ │ └── init-spec.js │ └── styles │ │ └── git-diff.less ├── go-to-line │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── keymaps │ │ └── go-to-line.cson │ ├── lib │ │ └── go-to-line-view.js │ ├── menus │ │ └── go-to-line.cson │ ├── package.json │ └── spec │ │ ├── fixtures │ │ └── sample.js │ │ └── go-to-line-spec.js ├── grammar-selector │ ├── README.md │ ├── keymaps │ │ └── grammar-selector.cson │ ├── lib │ │ ├── grammar-list-view.js │ │ ├── grammar-status-view.js │ │ └── main.js │ ├── menus │ │ └── grammar-selector.cson │ ├── package.json │ ├── spec │ │ ├── fixtures │ │ │ └── language-with-no-name │ │ │ │ ├── grammars │ │ │ │ └── a.json │ │ │ │ └── package.json │ │ └── grammar-selector-spec.js │ └── styles │ │ └── grammar-selector.less ├── incompatible-packages │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── incompatible-packages-component.js │ │ ├── main.js │ │ ├── status-icon-component.js │ │ └── view-uri.js │ ├── package.json │ ├── spec │ │ ├── fixtures │ │ │ └── incompatible-package │ │ │ │ ├── bad.js │ │ │ │ └── package.json │ │ ├── incompatible-packages-component-spec.js │ │ └── incompatible-packages-spec.js │ └── styles │ │ └── incompatible-packages.less ├── language-rust-bundled │ ├── README.md │ ├── grammars │ │ └── tree-sitter-rust.cson │ ├── lib │ │ └── main.js │ ├── package.json │ └── settings │ │ └── rust.cson ├── line-ending-selector │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── helpers.js │ │ ├── main.js │ │ ├── selector.js │ │ └── status-bar-item.js │ ├── package.json │ └── spec │ │ ├── fixtures │ │ ├── mixed-endings.md │ │ ├── unix-endings.md │ │ └── windows-endings.md │ │ └── line-ending-selector-spec.js ├── link │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE.md │ ├── README.md │ ├── keymaps │ │ └── links.cson │ ├── lib │ │ └── link.js │ ├── menus │ │ └── link.cson │ ├── package.json │ └── spec │ │ └── link-spec.js ├── one-dark-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── c.less │ │ ├── cpp.less │ │ ├── cs.less │ │ ├── css.less │ │ ├── elixir.less │ │ ├── gfm.less │ │ ├── go.less │ │ ├── ini.less │ │ ├── java.less │ │ ├── javascript.less │ │ ├── json.less │ │ ├── ng.less │ │ ├── php.less │ │ ├── python.less │ │ ├── ruby.less │ │ └── typescript.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ └── css.less ├── one-dark-ui │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── lib │ │ └── main.js │ ├── package.json │ ├── spec │ │ └── theme-spec.js │ └── styles │ │ ├── atom.less │ │ ├── badges.less │ │ ├── buttons.less │ │ ├── config.less │ │ ├── core.less │ │ ├── docks.less │ │ ├── dropdowns.less │ │ ├── editor.less │ │ ├── git.less │ │ ├── inputs.less │ │ ├── key-binding.less │ │ ├── lists.less │ │ ├── messages.less │ │ ├── modal.less │ │ ├── nav.less │ │ ├── notifications.less │ │ ├── packages.less │ │ ├── panels.less │ │ ├── panes.less │ │ ├── progress.less │ │ ├── settings.less │ │ ├── sites.less │ │ ├── status-bar.less │ │ ├── tabs.less │ │ ├── text.less │ │ ├── title-bar.less │ │ ├── tooltips.less │ │ ├── tree-view.less │ │ ├── ui-mixins.less │ │ ├── ui-variables-custom.less │ │ └── ui-variables.less ├── one-light-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── c.less │ │ ├── cpp.less │ │ ├── cs.less │ │ ├── css.less │ │ ├── elixir.less │ │ ├── gfm.less │ │ ├── go.less │ │ ├── ini.less │ │ ├── java.less │ │ ├── javascript.less │ │ ├── json.less │ │ ├── ng.less │ │ ├── php.less │ │ ├── python.less │ │ ├── ruby.less │ │ └── typescript.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ └── css.less ├── one-light-ui │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── lib │ │ └── main.js │ ├── package.json │ ├── spec │ │ └── theme-spec.js │ └── styles │ │ ├── atom.less │ │ ├── badges.less │ │ ├── buttons.less │ │ ├── config.less │ │ ├── core.less │ │ ├── docks.less │ │ ├── dropdowns.less │ │ ├── editor.less │ │ ├── git.less │ │ ├── inputs.less │ │ ├── key-binding.less │ │ ├── lists.less │ │ ├── messages.less │ │ ├── modal.less │ │ ├── nav.less │ │ ├── notifications.less │ │ ├── packages.less │ │ ├── panels.less │ │ ├── panes.less │ │ ├── progress.less │ │ ├── settings.less │ │ ├── sites.less │ │ ├── status-bar.less │ │ ├── tabs.less │ │ ├── text.less │ │ ├── title-bar.less │ │ ├── tooltips.less │ │ ├── tree-view.less │ │ ├── ui-mixins.less │ │ ├── ui-variables-custom.less │ │ └── ui-variables.less ├── solarized-dark-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── c.less │ │ ├── coffee.less │ │ ├── css.less │ │ ├── go.less │ │ ├── java.less │ │ ├── javascript.less │ │ ├── markdown.less │ │ ├── markup.less │ │ ├── php.less │ │ ├── python.less │ │ ├── ruby.less │ │ ├── scala.less │ │ └── typescript.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ ├── css.less │ │ ├── html.less │ │ └── js.less ├── solarized-light-syntax │ ├── LICENSE.md │ ├── README.md │ ├── index.less │ ├── package.json │ └── styles │ │ ├── colors.less │ │ ├── editor.less │ │ ├── syntax-legacy │ │ ├── _base.less │ │ ├── c.less │ │ ├── coffee.less │ │ ├── css.less │ │ ├── go.less │ │ ├── java.less │ │ ├── javascript.less │ │ ├── markdown.less │ │ ├── markup.less │ │ ├── php.less │ │ ├── python.less │ │ ├── ruby.less │ │ ├── scala.less │ │ └── typescript.less │ │ ├── syntax-variables.less │ │ └── syntax │ │ ├── base.less │ │ ├── css.less │ │ ├── html.less │ │ └── js.less ├── update-package-dependencies │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── update-package-dependencies-status-view.js │ │ └── update-package-dependencies.js │ ├── package.json │ ├── spec │ │ └── update-package-dependencies-spec.js │ └── styles │ │ └── update-package-dependencies.less └── welcome │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── assets │ ├── code.svg │ ├── package.svg │ ├── project.svg │ ├── shortcut.svg │ └── theme.svg │ ├── docs │ └── events.md │ ├── lib │ ├── consent-view.js │ ├── guide-view.js │ ├── main.js │ ├── reporter-proxy.js │ ├── welcome-package.js │ └── welcome-view.js │ ├── menus │ └── welcome.cson │ ├── package-lock.json │ ├── package.json │ ├── styles │ └── welcome.less │ └── test │ ├── helpers.js │ └── welcome.test.js ├── resources ├── app-icons │ ├── beta │ │ ├── atom.icns │ │ ├── atom.ico │ │ └── png │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 512.png │ │ │ └── 64.png │ ├── dev │ │ ├── atom.icns │ │ ├── atom.ico │ │ └── png │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 512.png │ │ │ └── 64.png │ ├── nightly │ │ ├── atom.icns │ │ ├── atom.ico │ │ └── png │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ ├── 48.png │ │ │ ├── 512.png │ │ │ └── 64.png │ └── stable │ │ ├── atom.icns │ │ ├── atom.ico │ │ └── png │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 24.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 48.png │ │ ├── 512.png │ │ └── 64.png ├── linux │ ├── atom.desktop.in │ ├── atom.policy │ ├── debian │ │ └── control.in │ ├── desktopenviroment │ │ └── cinnamon │ │ │ └── atom.nemo_action │ └── redhat │ │ └── atom.spec.in ├── mac │ ├── atom-Info.plist │ ├── entitlements.plist │ ├── file.icns │ └── helper-Info.plist └── win │ ├── apm.cmd │ ├── apm.sh │ ├── atom.cmd │ ├── atom.js │ ├── atom.sh │ ├── atom.visualElementsManifest.xml │ ├── file.ico │ ├── folder.ico │ ├── loading.gif │ └── visualElements │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square71x71Logo.scale-100.png │ ├── Square71x71Logo.scale-125.png │ ├── Square71x71Logo.scale-150.png │ ├── Square71x71Logo.scale-200.png │ └── Square71x71Logo.scale-400.png ├── script ├── bootstrap ├── bootstrap.cmd ├── build ├── build.cmd ├── cibuild ├── clean ├── clean.cmd ├── config.js ├── deprecated-packages.json ├── lib │ ├── backup-node-modules.js │ ├── check-chromedriver-version.js │ ├── clean-caches.js │ ├── clean-dependencies.js │ ├── clean-output-directory.js │ ├── code-sign-on-mac.js │ ├── code-sign-on-windows.js │ ├── compress-artifacts.js │ ├── copy-assets.js │ ├── create-debian-package.js │ ├── create-rpm-package.js │ ├── create-windows-installer.js │ ├── delete-msbuild-from-path.js │ ├── dependencies-fingerprint.js │ ├── download-file-from-github.js │ ├── dump-symbols.js │ ├── expand-glob-paths.js │ ├── generate-api-docs.js │ ├── generate-metadata.js │ ├── generate-module-cache.js │ ├── generate-startup-snapshot.js │ ├── get-license-text.js │ ├── handle-tilde.js │ ├── include-path-in-packaged-app.js │ ├── install-apm.js │ ├── install-application.js │ ├── install-script-dependencies.js │ ├── kill-running-atom-instances.js │ ├── lint-coffee-script-paths.js │ ├── lint-java-script-paths.js │ ├── lint-less-paths.js │ ├── notarize-on-mac.js │ ├── package-application.js │ ├── prebuild-less-cache.js │ ├── read-files.js │ ├── run-apm-install.js │ ├── spawn-sync.js │ ├── test-sign-on-mac.js │ ├── transpile-babel-paths.js │ ├── transpile-coffee-script-paths.js │ ├── transpile-cson-paths.js │ ├── transpile-packages-with-custom-transpiler-paths.js │ ├── transpile-peg-js-paths.js │ ├── update-dependency │ │ ├── fetch-outdated-dependencies.js │ │ ├── git.js │ │ ├── index.js │ │ ├── main.js │ │ ├── pull-request.js │ │ ├── spec │ │ │ ├── fetch-outdated-dependencies-spec.js │ │ │ ├── fixtures │ │ │ │ ├── create-pr-response.json │ │ │ │ ├── latest-package.json │ │ │ │ └── search-response.json │ │ │ ├── git-spec.js │ │ │ ├── helpers.js │ │ │ ├── pull-request-spec.js │ │ │ └── util-spec.js │ │ └── util.js │ └── verify-machine-requirements.js ├── license-overrides.js ├── lint ├── lint.cmd ├── package-lock.json ├── package.json ├── postprocess-junit-results ├── postprocess-junit-results.cmd ├── redownload-electron-bins.js ├── test ├── test.cmd ├── update-server │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── run-server.js ├── verify-snapshot-script └── vsts │ ├── README.md │ ├── get-release-version.js │ ├── lib │ ├── release-notes.js │ ├── upload-linux-packages.js │ ├── upload-to-azure-blob.js │ └── upload-to-s3.js │ ├── lint.yml │ ├── nightly-release.yml │ ├── package-lock.json │ ├── package.json │ ├── platforms │ ├── linux.yml │ ├── macos.yml │ ├── templates │ │ ├── bootstrap.yml │ │ ├── build.yml │ │ ├── cache.yml │ │ ├── download-unzip.yml │ │ ├── get-release-version.yml │ │ ├── preparation.yml │ │ ├── publish.yml │ │ └── test.yml │ └── windows.yml │ ├── pull-requests.yml │ ├── release-branch-build.yml │ ├── upload-artifacts.js │ ├── upload-crash-reports.js │ ├── x64-cache-key │ └── x86-cache-key ├── spec ├── application-delegate-spec.js ├── async-spec-helpers.js ├── atom-environment-spec.js ├── atom-paths-spec.js ├── atom-protocol-handler-spec.js ├── atom-reporter.coffee ├── auto-update-manager-spec.js ├── babel-spec.js ├── buffered-node-process-spec.js ├── buffered-process-spec.js ├── clipboard-spec.js ├── command-installer-spec.js ├── command-registry-spec.js ├── compile-cache-spec.coffee ├── config-file-spec.js ├── config-spec.js ├── context-menu-manager-spec.js ├── decoration-manager-spec.js ├── default-directory-provider-spec.js ├── default-directory-searcher-spec.js ├── deserializer-manager-spec.js ├── dock-spec.js ├── file-system-blob-store-spec.js ├── fixtures │ ├── babel │ │ ├── babel-comment.js │ │ ├── babel-double-quotes.js │ │ ├── babel-single-quotes.js │ │ ├── flow-comment.js │ │ ├── flow-slash-comment.js │ │ └── invalid.js │ ├── coffee.coffee │ ├── cson.cson │ ├── css.css │ ├── dir │ │ ├── a │ │ ├── a-dir │ │ │ └── oh-git │ │ ├── b │ │ ├── c │ │ ├── file-detected-as-binary │ │ ├── file-with-newline-literal │ │ ├── file-with-unicode │ │ └── file1 │ ├── git │ │ ├── ignore.git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 65 │ │ │ │ │ └── a457425a679cbe9adf0d2741785d3ceabb44a7 │ │ │ │ ├── e6 │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ └── ef │ │ │ │ │ └── 046e9eecaa5255ea5e9817132d4001724d6ae1 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── master.git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── objects │ │ │ │ ├── 65 │ │ │ │ │ └── a457425a679cbe9adf0d2741785d3ceabb44a7 │ │ │ │ ├── e6 │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ └── ef │ │ │ │ │ └── 046e9eecaa5255ea5e9817132d4001724d6ae1 │ │ │ ├── refs │ │ │ │ └── heads │ │ │ │ │ └── master │ │ │ └── worktrees │ │ │ │ └── worktree-dir │ │ │ │ ├── HEAD │ │ │ │ ├── commondir │ │ │ │ └── index │ │ ├── repo-with-submodules │ │ │ ├── .gitmodules │ │ │ ├── README │ │ │ ├── You-Dont-Need-jQuery │ │ │ │ ├── .babelrc │ │ │ │ ├── .eslintrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README-es.md │ │ │ │ ├── README-id.md │ │ │ │ ├── README-it.md │ │ │ │ ├── README-my.md │ │ │ │ ├── README-ru.md │ │ │ │ ├── README-tr.md │ │ │ │ ├── README-vi.md │ │ │ │ ├── README.ko-KR.md │ │ │ │ ├── README.md │ │ │ │ ├── README.pt-BR.md │ │ │ │ ├── README.zh-CN.md │ │ │ │ ├── git.git │ │ │ │ ├── karma.conf.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── README.md │ │ │ │ │ ├── css.spec.js │ │ │ │ │ ├── dom.spec.js │ │ │ │ │ ├── query.spec.js │ │ │ │ │ └── utilities.spec.js │ │ │ ├── git.git │ │ │ │ ├── COMMIT_EDITMSG │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── description │ │ │ │ ├── hooks │ │ │ │ │ ├── applypatch-msg.sample │ │ │ │ │ ├── commit-msg.sample │ │ │ │ │ ├── post-update.sample │ │ │ │ │ ├── pre-applypatch.sample │ │ │ │ │ ├── pre-commit.sample │ │ │ │ │ ├── pre-push.sample │ │ │ │ │ ├── pre-rebase.sample │ │ │ │ │ ├── prepare-commit-msg.sample │ │ │ │ │ └── update.sample │ │ │ │ ├── index │ │ │ │ ├── info │ │ │ │ │ └── exclude │ │ │ │ ├── logs │ │ │ │ │ ├── HEAD │ │ │ │ │ └── refs │ │ │ │ │ │ └── heads │ │ │ │ │ │ └── master │ │ │ │ ├── modules │ │ │ │ │ ├── You-Dont-Need-jQuery │ │ │ │ │ │ ├── COMMIT_EDITMSG │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── ORIG_HEAD │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── description │ │ │ │ │ │ ├── gitdir │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── applypatch-msg.sample │ │ │ │ │ │ │ ├── commit-msg.sample │ │ │ │ │ │ │ ├── post-update.sample │ │ │ │ │ │ │ ├── pre-applypatch.sample │ │ │ │ │ │ │ ├── pre-commit.sample │ │ │ │ │ │ │ ├── pre-push.sample │ │ │ │ │ │ │ ├── pre-rebase.sample │ │ │ │ │ │ │ ├── prepare-commit-msg.sample │ │ │ │ │ │ │ └── update.sample │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── info │ │ │ │ │ │ │ └── exclude │ │ │ │ │ │ ├── logs │ │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ │ └── refs │ │ │ │ │ │ │ │ ├── heads │ │ │ │ │ │ │ │ └── master │ │ │ │ │ │ │ │ └── remotes │ │ │ │ │ │ │ │ └── origin │ │ │ │ │ │ │ │ └── HEAD │ │ │ │ │ │ ├── objects │ │ │ │ │ │ │ ├── a7 │ │ │ │ │ │ │ │ └── 8b35a896b890f0a2a4f1f924c5739776415250 │ │ │ │ │ │ │ ├── ae │ │ │ │ │ │ │ │ └── 897dce6e0590f08dddfe9a5152e237e955ca57 │ │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ │ └── 8ed228c0a080145d28ed625a5f487caae6a3f9 │ │ │ │ │ │ │ └── pack │ │ │ │ │ │ │ │ ├── pack-d38b3bc339acd655e8dae9c0dcea8bb2ec174d16.idx │ │ │ │ │ │ │ │ └── pack-d38b3bc339acd655e8dae9c0dcea8bb2ec174d16.pack │ │ │ │ │ │ ├── packed-refs │ │ │ │ │ │ └── refs │ │ │ │ │ │ │ ├── heads │ │ │ │ │ │ │ └── master │ │ │ │ │ │ │ └── remotes │ │ │ │ │ │ │ └── origin │ │ │ │ │ │ │ └── HEAD │ │ │ │ │ └── jstips │ │ │ │ │ │ ├── COMMIT_EDITMSG │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ ├── ORIG_HEAD │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── description │ │ │ │ │ │ ├── gitdir │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── applypatch-msg.sample │ │ │ │ │ │ ├── commit-msg.sample │ │ │ │ │ │ ├── post-update.sample │ │ │ │ │ │ ├── pre-applypatch.sample │ │ │ │ │ │ ├── pre-commit.sample │ │ │ │ │ │ ├── pre-push.sample │ │ │ │ │ │ ├── pre-rebase.sample │ │ │ │ │ │ ├── prepare-commit-msg.sample │ │ │ │ │ │ └── update.sample │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── info │ │ │ │ │ │ └── exclude │ │ │ │ │ │ ├── logs │ │ │ │ │ │ ├── HEAD │ │ │ │ │ │ └── refs │ │ │ │ │ │ │ ├── heads │ │ │ │ │ │ │ ├── master │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── remotes │ │ │ │ │ │ │ └── origin │ │ │ │ │ │ │ └── HEAD │ │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 05 │ │ │ │ │ │ │ └── 25ef667328cb1f86b1ddf523db4a064e1590fa │ │ │ │ │ │ ├── 1a │ │ │ │ │ │ │ └── dd860234dad4a8bf59340363e9c88bb0457cb7 │ │ │ │ │ │ ├── 5b │ │ │ │ │ │ │ └── 35953562dbb4f2debe88fcc9ac1805064e1e5a │ │ │ │ │ │ └── pack │ │ │ │ │ │ │ ├── pack-e568a55e02b6b7b75582924204669e4f3ed5276f.idx │ │ │ │ │ │ │ └── pack-e568a55e02b6b7b75582924204669e4f3ed5276f.pack │ │ │ │ │ │ ├── packed-refs │ │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ ├── master │ │ │ │ │ │ └── test │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── objects │ │ │ │ │ ├── 40 │ │ │ │ │ │ └── f4e79926a85134d4c905d04e70573b6616f3bc │ │ │ │ │ ├── 50 │ │ │ │ │ │ └── b89367d8f0acd312ef5aa012eac20a75c91351 │ │ │ │ │ ├── 54 │ │ │ │ │ │ └── 3b9bebdc6bd5c4b22136034a95dd097a57d3dd │ │ │ │ │ ├── 3e │ │ │ │ │ │ └── 2fe2f8226faab789f70d6d8a7231e4f2bd54df │ │ │ │ │ ├── d2 │ │ │ │ │ │ └── b0ad9cbc6f6c4372e8956e5cc5af771b2342e5 │ │ │ │ │ ├── d3 │ │ │ │ │ │ └── e073baf592c56614c68ead9e2cd0a3880140cd │ │ │ │ │ └── e6 │ │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ └── refs │ │ │ │ │ ├── heads │ │ │ │ │ └── master │ │ │ │ │ └── remotes │ │ │ │ │ └── origin │ │ │ │ │ └── master │ │ │ └── jstips │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── README.md │ │ │ │ ├── git.git │ │ │ │ └── resources │ │ │ │ ├── jstips-header-blog.gif │ │ │ │ └── log.js │ │ └── working-dir │ │ │ ├── .gitignore │ │ │ ├── a.txt │ │ │ └── git.git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── objects │ │ │ ├── 16 │ │ │ │ └── 735fb793d7b038818219c4b8c6295346e20eef │ │ │ ├── 52 │ │ │ │ └── f56457b6fca045ce41bb9d32e6ca79d23192af │ │ │ ├── 65 │ │ │ │ └── a457425a679cbe9adf0d2741785d3ceabb44a7 │ │ │ ├── 66 │ │ │ │ └── dc9051da651c15d98d017a88658263cab28f02 │ │ │ ├── 06 │ │ │ │ └── 15f9a45968b3515e0a202530ef9f61aba26b6c │ │ │ ├── 5b │ │ │ │ └── 24ab4c3baadf534242b1acc220c8fa051b9b20 │ │ │ ├── 8a │ │ │ │ └── 9c86f1cb1f14b8f436eb91f4b052c8802ca99e │ │ │ ├── e6 │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ ├── ec │ │ │ │ └── 5e386905ff2d36e291086a1207f2585aaa8920 │ │ │ ├── ef │ │ │ │ └── 046e9eecaa5255ea5e9817132d4001724d6ae1 │ │ │ ├── fe │ │ │ │ └── bde178cdf35e9df6279d87aa27590c6d92e354 │ │ │ └── ff │ │ │ │ └── c8218bd2240a0cb92f6f02548d45784428349b │ │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── indentation │ │ ├── classes.js │ │ ├── expressions.js │ │ ├── function_call.js │ │ ├── if_then_else.js │ │ ├── jsx.jsx │ │ ├── objects_and_array.js │ │ ├── switch.js │ │ └── while.js │ ├── lorem.txt │ ├── module-cache │ │ └── file.json │ ├── native-cache │ │ ├── file-1.js │ │ ├── file-2.js │ │ ├── file-3.js │ │ └── file-4.js │ ├── packages │ │ ├── folder │ │ │ └── package-symlinked │ │ │ │ └── package.json │ │ ├── package-that-throws-an-exception │ │ │ └── index.coffee │ │ ├── package-that-throws-on-activate │ │ │ └── index.coffee │ │ ├── package-that-throws-on-deactivate │ │ │ └── index.coffee │ │ ├── package-with-activation-commands-and-deserializers │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-activation-commands │ │ │ ├── index.coffee │ │ │ └── package.cson │ │ ├── package-with-activation-hooks │ │ │ ├── index.coffee │ │ │ └── package.cson │ │ ├── package-with-broken-keymap │ │ │ └── keymaps │ │ │ │ └── broken.json │ │ ├── package-with-broken-package-json │ │ │ └── package.json │ │ ├── package-with-cached-incompatible-native-module │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── package-with-config-defaults │ │ │ └── index.coffee │ │ ├── package-with-config-schema │ │ │ └── index.coffee │ │ ├── package-with-consumed-services │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-deactivate │ │ │ └── index.coffee │ │ ├── package-with-deprecated-pane-item-method │ │ │ └── index.coffee │ │ ├── package-with-deserializers │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-different-directory-name │ │ │ └── package.json │ │ ├── package-with-directory-provider │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-empty-activation-commands │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-empty-activation-hooks │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-empty-keymap │ │ │ ├── keymaps │ │ │ │ └── keymap.cson │ │ │ └── package.json │ │ ├── package-with-empty-menu │ │ │ ├── menus │ │ │ │ └── menu.cson │ │ │ └── package.json │ │ ├── package-with-empty-workspace-openers │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-eval-time-api-calls │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-grammars │ │ │ └── grammars │ │ │ │ ├── alittle.cson │ │ │ │ └── alot.cson │ │ ├── package-with-ignored-incompatible-native-module │ │ │ ├── main.js │ │ │ ├── node_modules │ │ │ │ ├── compatible-native-module │ │ │ │ │ ├── build │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── native.node │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ └── native-module │ │ │ │ │ ├── build │ │ │ │ │ └── Release │ │ │ │ │ │ └── native.node │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── package-with-incompatible-native-module-loaded-conditionally │ │ │ ├── main.js │ │ │ ├── node_modules │ │ │ │ └── native-module │ │ │ │ │ ├── build │ │ │ │ │ └── Release │ │ │ │ │ │ └── native.node │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── package-with-incompatible-native-module │ │ │ ├── main.js │ │ │ ├── node_modules │ │ │ │ └── native-module │ │ │ │ │ ├── build │ │ │ │ │ └── Release │ │ │ │ │ │ └── native.node │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── package-with-index │ │ │ └── index.coffee │ │ ├── package-with-injection-selector │ │ │ └── grammars │ │ │ │ └── grammar.cson │ │ ├── package-with-invalid-activation-commands │ │ │ └── package.json │ │ ├── package-with-invalid-context-menu │ │ │ ├── menus │ │ │ │ └── menu.json │ │ │ └── package.json │ │ ├── package-with-invalid-grammar │ │ │ ├── grammars │ │ │ │ └── grammar.json │ │ │ └── package.json │ │ ├── package-with-invalid-settings │ │ │ ├── package.json │ │ │ └── settings │ │ │ │ └── settings.json │ │ ├── package-with-invalid-styles │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ └── index.less │ │ ├── package-with-invalid-url-package-json │ │ │ └── package.json │ │ ├── package-with-json-config-schema │ │ │ └── package.json │ │ ├── package-with-keymaps-manifest │ │ │ ├── keymaps │ │ │ │ ├── keymap-1.json │ │ │ │ ├── keymap-2.cson │ │ │ │ └── keymap-3.cson │ │ │ └── package.cson │ │ ├── package-with-keymaps │ │ │ └── keymaps │ │ │ │ ├── keymap-1.cson │ │ │ │ ├── keymap-2.cson │ │ │ │ └── keymap-3.cjson │ │ ├── package-with-main │ │ │ ├── main-module.coffee │ │ │ └── package.cson │ │ ├── package-with-menus-manifest │ │ │ ├── menus │ │ │ │ ├── menu-1.cson │ │ │ │ ├── menu-2.cson │ │ │ │ └── menu-3.cson │ │ │ └── package.cson │ │ ├── package-with-menus │ │ │ └── menus │ │ │ │ ├── menu-1.cson │ │ │ │ ├── menu-2.cson │ │ │ │ └── menu-3.cson │ │ ├── package-with-missing-consumed-services │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-missing-provided-services │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-no-activate │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-prefixed-and-suffixed-repo-url │ │ │ └── package.json │ │ ├── package-with-provided-services │ │ │ ├── index.coffee │ │ │ └── package.json │ │ ├── package-with-rb-filetype │ │ │ ├── grammars │ │ │ │ └── rb.cson │ │ │ └── package.json │ │ ├── package-with-serialization │ │ │ └── index.coffee │ │ ├── package-with-serialize-error │ │ │ ├── index.coffee │ │ │ └── package.cson │ │ ├── package-with-settings │ │ │ └── settings │ │ │ │ └── omg.cson │ │ ├── package-with-short-url-package-json │ │ │ └── package.json │ │ ├── package-with-style-sheets-manifest │ │ │ ├── package.cson │ │ │ └── styles │ │ │ │ ├── 1.css │ │ │ │ ├── 2.less │ │ │ │ └── 3.css │ │ ├── package-with-styles │ │ │ └── styles │ │ │ │ ├── 1.css │ │ │ │ ├── 2.less │ │ │ │ ├── 3.test-context.css │ │ │ │ └── 4.css │ │ ├── package-with-stylesheets-manifest │ │ │ └── package.cson │ │ ├── package-with-tree-sitter-grammar │ │ │ └── grammars │ │ │ │ ├── fake-parser.js │ │ │ │ └── some-language.cson │ │ ├── package-with-uri-handler │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-url-main │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-view-providers │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package-with-workspace-openers │ │ │ ├── index.coffee │ │ │ └── package.cson │ │ ├── package-without-module │ │ │ └── package.cson │ │ ├── sublime-tabs │ │ │ └── package.json │ │ ├── theme-with-incomplete-ui-variables │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── editor.less │ │ │ │ └── ui-variables.less │ │ ├── theme-with-index-css │ │ │ ├── index.css │ │ │ └── package.json │ │ ├── theme-with-index-less │ │ │ ├── index.less │ │ │ └── package.json │ │ ├── theme-with-invalid-styles │ │ │ ├── index.less │ │ │ └── package.json │ │ ├── theme-with-package-file │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── first.css │ │ │ │ ├── last.css │ │ │ │ └── second.less │ │ ├── theme-with-syntax-variables │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ └── editor.less │ │ ├── theme-with-ui-variables │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── editor.less │ │ │ │ └── ui-variables.less │ │ ├── theme-without-package-file │ │ │ └── styles │ │ │ │ ├── a.css │ │ │ │ ├── b.css │ │ │ │ ├── c.less │ │ │ │ └── d.csv │ │ └── wordcount │ │ │ └── package.json │ ├── sample-with-comments.js │ ├── sample-with-many-folds.js │ ├── sample-with-tabs-and-leading-comment.coffee │ ├── sample-with-tabs.coffee │ ├── sample.js │ ├── sample.less │ ├── sample.txt │ ├── script-with-deprecations.js │ ├── script.js │ ├── shebang │ ├── task-handler-with-deprecations.coffee │ ├── task-spec-handler.coffee │ ├── testdir │ │ ├── sample-theme-1 │ │ │ ├── readme │ │ │ └── src │ │ │ │ └── js │ │ │ │ └── main.js │ │ └── sample-theme-2 │ │ │ ├── readme │ │ │ └── src │ │ │ └── js │ │ │ ├── main.js │ │ │ └── plugin │ │ │ └── main.js │ ├── two-hundred.txt │ └── typescript │ │ ├── invalid.ts │ │ └── valid.ts ├── git-repository-provider-spec.js ├── git-repository-spec.js ├── grammar-registry-spec.js ├── gutter-container-spec.js ├── gutter-spec.js ├── helpers │ ├── random.js │ └── words.js ├── history-manager-spec.js ├── integration │ ├── helpers │ │ ├── atom-launcher.sh │ │ └── start-atom.js │ └── smoke-spec.js ├── jasmine-junit-reporter.js ├── jasmine-list-reporter.js ├── jasmine-test-runner.coffee ├── keymap-extensions-spec.js ├── main-process │ ├── atom-application.test.js │ ├── atom-window.test.js │ ├── file-recovery-service.test.js │ ├── mocha-test-runner.js │ └── parse-command-line.test.js ├── menu-manager-spec.js ├── menu-sort-helpers-spec.js ├── module-cache-spec.js ├── native-compile-cache-spec.coffee ├── native-watcher-registry-spec.js ├── notification-manager-spec.js ├── notification-spec.js ├── package-manager-spec.js ├── package-spec.js ├── package-transpilation-registry-spec.js ├── pane-axis-element-spec.js ├── pane-container-element-spec.js ├── pane-container-spec.js ├── pane-element-spec.js ├── pane-spec.js ├── panel-container-element-spec.js ├── panel-container-spec.js ├── panel-spec.js ├── path-watcher-spec.js ├── project-spec.js ├── reopen-project-menu-manager-spec.js ├── selection-spec.js ├── spec-helper-platform.js ├── spec-helper.coffee ├── squirrel-update-spec.js ├── state-store-spec.js ├── style-manager-spec.js ├── styles-element-spec.js ├── syntax-scope-map-spec.js ├── task-spec.js ├── text-editor-component-spec.js ├── text-editor-element-spec.js ├── text-editor-registry-spec.js ├── text-editor-spec.js ├── text-mate-language-mode-spec.js ├── text-utils-spec.js ├── theme-manager-spec.js ├── title-bar-spec.js ├── tooltip-manager-spec.js ├── tree-indenter-spec.js ├── tree-sitter-language-mode-spec.js ├── typescript-spec.js ├── update-process-env-spec.js ├── uri-handler-registry-spec.js ├── view-registry-spec.js ├── window-event-handler-spec.js ├── workspace-center-spec.js ├── workspace-element-spec.js └── workspace-spec.js ├── src ├── application-delegate.js ├── atom-environment.js ├── atom-paths.js ├── auto-update-manager.js ├── babel.js ├── buffered-node-process.js ├── buffered-process.js ├── clipboard.js ├── coffee-script.js ├── color.js ├── command-installer.js ├── command-registry.js ├── compile-cache.js ├── config-file.js ├── config-schema.js ├── config.js ├── context-menu-manager.coffee ├── core-uri-handlers.js ├── crash-reporter-start.js ├── cursor.js ├── decoration-manager.js ├── decoration.js ├── default-directory-provider.coffee ├── default-directory-searcher.js ├── delegated-listener.js ├── deprecated-syntax-selectors.js ├── deserializer-manager.js ├── dock.js ├── electron-shims.js ├── file-system-blob-store.js ├── first-mate-helpers.js ├── get-app-name.js ├── get-release-channel.js ├── get-window-load-settings.js ├── git-repository-provider.js ├── git-repository.js ├── grammar-registry.js ├── gutter-container.js ├── gutter.js ├── history-manager.js ├── initialize-application-window.js ├── initialize-benchmark-window.js ├── initialize-test-window.js ├── ipc-helpers.js ├── item-registry.js ├── keymap-extensions.coffee ├── layer-decoration.coffee ├── less-compile-cache.coffee ├── main-process │ ├── application-menu.js │ ├── atom-application.js │ ├── atom-protocol-handler.js │ ├── atom-window.js │ ├── auto-update-manager.js │ ├── auto-updater-win32.js │ ├── context-menu.js │ ├── file-recovery-service.js │ ├── main.js │ ├── parse-command-line.js │ ├── spawner.js │ ├── squirrel-update.js │ ├── start.js │ ├── win-powershell.js │ └── win-shell.js ├── menu-helpers.js ├── menu-manager.coffee ├── menu-sort-helpers.js ├── model.coffee ├── module-cache.js ├── module-utils.js ├── native-compile-cache.js ├── native-watcher-registry.js ├── notification-manager.js ├── notification.js ├── null-grammar.js ├── overlay-manager.coffee ├── package-manager.js ├── package-transpilation-registry.js ├── package.js ├── pane-axis-element.js ├── pane-axis.js ├── pane-container-element.js ├── pane-container.js ├── pane-element.js ├── pane-resize-handle-element.js ├── pane.js ├── panel-container-element.js ├── panel-container.js ├── panel.js ├── path-watcher.js ├── project.js ├── protocol-handler-installer.js ├── register-default-commands.coffee ├── reopen-project-list-view.js ├── reopen-project-menu-manager.js ├── replace-handler.coffee ├── ripgrep-directory-searcher.js ├── scan-handler.coffee ├── scope-descriptor.js ├── selection.js ├── selectors.js ├── special-token-symbols.coffee ├── startup-time.js ├── state-store.js ├── storage-folder.js ├── style-manager.js ├── styles-element.js ├── syntax-scope-map.js ├── task-bootstrap.js ├── task.coffee ├── test.ejs ├── text-editor-component.js ├── text-editor-element.js ├── text-editor-registry.js ├── text-editor.js ├── text-mate-language-mode.js ├── text-utils.js ├── theme-manager.js ├── theme-package.js ├── title-bar.js ├── token-iterator.js ├── token.coffee ├── tokenized-line.coffee ├── tooltip-manager.js ├── tooltip.js ├── tree-indenter.js ├── tree-sitter-grammar.js ├── tree-sitter-language-mode.js ├── typescript.js ├── update-process-env.js ├── uri-handler-registry.js ├── view-registry.js ├── window-event-handler.js ├── window.js ├── workspace-center.js ├── workspace-element.js └── workspace.js ├── static ├── atom-ui │ ├── README.md │ ├── _index.less │ └── styles │ │ ├── badges.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── git-status.less │ │ ├── icons.less │ │ ├── inputs.less │ │ ├── layout.less │ │ ├── lists.less │ │ ├── loading.less │ │ ├── messages.less │ │ ├── mixins │ │ └── mixins.less │ │ ├── modals.less │ │ ├── panels.less │ │ ├── private │ │ ├── README.md │ │ ├── alerts.less │ │ ├── close.less │ │ ├── code.less │ │ ├── forms.less │ │ ├── links.less │ │ ├── navs.less │ │ ├── scaffolding.less │ │ ├── sections.less │ │ ├── tables.less │ │ └── utilities.less │ │ ├── select-list.less │ │ ├── site-colors.less │ │ ├── text.less │ │ ├── tooltip.less │ │ └── variables │ │ └── variables.less ├── atom.less ├── babelrc.json ├── core-ui │ ├── _index.less │ ├── cursors.less │ ├── docks.less │ ├── panels.less │ ├── panes.less │ ├── syntax.less │ ├── text-editor.less │ ├── title-bar.less │ ├── utils.less │ └── workspace-view.less ├── icons │ ├── atomicons.woff │ ├── octicons-2.1.2.woff │ ├── octicons.less │ └── octicons.woff ├── images │ ├── octocat-spinner-128.gif │ └── transparent-background.gif ├── index.html ├── index.js ├── jasmine.less ├── linux.less ├── normalize.less ├── scaffolding.less └── variables │ ├── octicon-mixins.less │ ├── octicon-utf-codes.less │ ├── syntax-variables.less │ └── ui-variables.less ├── stylelint.config.js └── vendor ├── jasmine-jquery.js └── jasmine.js /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/spec/fixtures/**/*.js 2 | node_modules 3 | /vendor/ 4 | /out/ 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | See https://atom.io/releases 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /apm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/apm/README.md -------------------------------------------------------------------------------- /apm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/apm/package-lock.json -------------------------------------------------------------------------------- /apm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/apm/package.json -------------------------------------------------------------------------------- /atom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/atom.sh -------------------------------------------------------------------------------- /benchmarks/benchmark-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/benchmarks/benchmark-runner.js -------------------------------------------------------------------------------- /benchmarks/text-editor-long-lines.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/benchmarks/text-editor-long-lines.bench.js -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/coffeelint.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/apm-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/apm-rest-api.md -------------------------------------------------------------------------------- /docs/build-instructions/build-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/build-instructions/build-status.md -------------------------------------------------------------------------------- /docs/build-instructions/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/build-instructions/linux.md -------------------------------------------------------------------------------- /docs/build-instructions/macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/build-instructions/macOS.md -------------------------------------------------------------------------------- /docs/build-instructions/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/build-instructions/windows.md -------------------------------------------------------------------------------- /docs/contributing-to-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/contributing-to-packages.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/native-profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/native-profiling.md -------------------------------------------------------------------------------- /docs/rfcs/000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/000-template.md -------------------------------------------------------------------------------- /docs/rfcs/001-updatable-bundled-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/001-updatable-bundled-packages.md -------------------------------------------------------------------------------- /docs/rfcs/002-atom-nightly-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/002-atom-nightly-releases.md -------------------------------------------------------------------------------- /docs/rfcs/003-consolidate-core-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/003-consolidate-core-packages.md -------------------------------------------------------------------------------- /docs/rfcs/004-decoration-ordering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/004-decoration-ordering.md -------------------------------------------------------------------------------- /docs/rfcs/005-grammar-comment-delims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/005-grammar-comment-delims.md -------------------------------------------------------------------------------- /docs/rfcs/005-pretranspile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/005-pretranspile.md -------------------------------------------------------------------------------- /docs/rfcs/005-scope-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/docs/rfcs/005-scope-naming.md -------------------------------------------------------------------------------- /dot-atom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/.gitignore -------------------------------------------------------------------------------- /dot-atom/init.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/init.coffee -------------------------------------------------------------------------------- /dot-atom/keymap.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/keymap.cson -------------------------------------------------------------------------------- /dot-atom/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/packages/README.md -------------------------------------------------------------------------------- /dot-atom/snippets.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/snippets.cson -------------------------------------------------------------------------------- /dot-atom/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/dot-atom/styles.less -------------------------------------------------------------------------------- /exports/atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/atom.js -------------------------------------------------------------------------------- /exports/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/clipboard.js -------------------------------------------------------------------------------- /exports/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/ipc.js -------------------------------------------------------------------------------- /exports/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/remote.js -------------------------------------------------------------------------------- /exports/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/shell.js -------------------------------------------------------------------------------- /exports/web-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/exports/web-frame.js -------------------------------------------------------------------------------- /keymaps/base.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/keymaps/base.cson -------------------------------------------------------------------------------- /keymaps/darwin.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/keymaps/darwin.cson -------------------------------------------------------------------------------- /keymaps/linux.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/keymaps/linux.cson -------------------------------------------------------------------------------- /keymaps/win32.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/keymaps/win32.cson -------------------------------------------------------------------------------- /menus/darwin.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/menus/darwin.cson -------------------------------------------------------------------------------- /menus/linux.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/menus/linux.cson -------------------------------------------------------------------------------- /menus/win32.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/menus/win32.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/package.json -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/README.md -------------------------------------------------------------------------------- /packages/about/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /packages/about/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/LICENSE.md -------------------------------------------------------------------------------- /packages/about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/README.md -------------------------------------------------------------------------------- /packages/about/lib/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/about.js -------------------------------------------------------------------------------- /packages/about/lib/components/about-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/components/about-view.js -------------------------------------------------------------------------------- /packages/about/lib/components/atom-logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/components/atom-logo.js -------------------------------------------------------------------------------- /packages/about/lib/components/update-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/components/update-view.js -------------------------------------------------------------------------------- /packages/about/lib/etch-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/etch-component.js -------------------------------------------------------------------------------- /packages/about/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/main.js -------------------------------------------------------------------------------- /packages/about/lib/update-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/lib/update-manager.js -------------------------------------------------------------------------------- /packages/about/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/package-lock.json -------------------------------------------------------------------------------- /packages/about/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/package.json -------------------------------------------------------------------------------- /packages/about/spec/about-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/spec/about-spec.js -------------------------------------------------------------------------------- /packages/about/spec/about-status-bar-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/spec/about-status-bar-spec.js -------------------------------------------------------------------------------- /packages/about/spec/mocks/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/spec/mocks/updater.js -------------------------------------------------------------------------------- /packages/about/spec/update-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/spec/update-manager-spec.js -------------------------------------------------------------------------------- /packages/about/spec/update-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/spec/update-view-spec.js -------------------------------------------------------------------------------- /packages/about/styles/about.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/about/styles/about.less -------------------------------------------------------------------------------- /packages/about/styles/variables.less: -------------------------------------------------------------------------------- 1 | @atom-green: #40a977; 2 | -------------------------------------------------------------------------------- /packages/atom-dark-syntax/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-syntax/LICENSE.md -------------------------------------------------------------------------------- /packages/atom-dark-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-syntax/README.md -------------------------------------------------------------------------------- /packages/atom-dark-syntax/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-syntax/index.less -------------------------------------------------------------------------------- /packages/atom-dark-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-syntax/package.json -------------------------------------------------------------------------------- /packages/atom-dark-syntax/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-syntax/styles/editor.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/LICENSE.md -------------------------------------------------------------------------------- /packages/atom-dark-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/README.md -------------------------------------------------------------------------------- /packages/atom-dark-ui/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/index.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/package.json -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/atom.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/buttons.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/dropdowns.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/editor.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/git.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/git.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/lists.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/messages.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/nav.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/overlays.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/overlays.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/panels.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/panes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/panes.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/progress.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/sites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/sites.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/tabs.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/text.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/tooltips.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/tree-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/tree-view.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/ui-mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/ui-mixins.less -------------------------------------------------------------------------------- /packages/atom-dark-ui/styles/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-dark-ui/styles/utilities.less -------------------------------------------------------------------------------- /packages/atom-light-syntax/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-syntax/LICENSE.md -------------------------------------------------------------------------------- /packages/atom-light-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-syntax/README.md -------------------------------------------------------------------------------- /packages/atom-light-syntax/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-syntax/index.less -------------------------------------------------------------------------------- /packages/atom-light-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-syntax/package.json -------------------------------------------------------------------------------- /packages/atom-light-ui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/LICENSE.md -------------------------------------------------------------------------------- /packages/atom-light-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/README.md -------------------------------------------------------------------------------- /packages/atom-light-ui/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/index.less -------------------------------------------------------------------------------- /packages/atom-light-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/package.json -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/atom.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/buttons.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/editor.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/git.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/git.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/lists.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/messages.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/overlays.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/overlays.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/panels.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/panes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/panes.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/progress.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/sites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/sites.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/tabs.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/text.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/tooltips.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/tree-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/tree-view.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/ui-mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/ui-mixins.less -------------------------------------------------------------------------------- /packages/atom-light-ui/styles/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/atom-light-ui/styles/utilities.less -------------------------------------------------------------------------------- /packages/autoflow/.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /packages/autoflow/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/autoflow/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/LICENSE.md -------------------------------------------------------------------------------- /packages/autoflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/README.md -------------------------------------------------------------------------------- /packages/autoflow/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/coffeelint.json -------------------------------------------------------------------------------- /packages/autoflow/keymaps/autoflow.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/keymaps/autoflow.cson -------------------------------------------------------------------------------- /packages/autoflow/lib/autoflow.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/lib/autoflow.coffee -------------------------------------------------------------------------------- /packages/autoflow/menus/autoflow.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/menus/autoflow.cson -------------------------------------------------------------------------------- /packages/autoflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/package.json -------------------------------------------------------------------------------- /packages/autoflow/spec/autoflow-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/autoflow/spec/autoflow-spec.coffee -------------------------------------------------------------------------------- /packages/dalek/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /packages/dalek/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/LICENSE.md -------------------------------------------------------------------------------- /packages/dalek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/README.md -------------------------------------------------------------------------------- /packages/dalek/lib/dalek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/lib/dalek.js -------------------------------------------------------------------------------- /packages/dalek/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/lib/main.js -------------------------------------------------------------------------------- /packages/dalek/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/package-lock.json -------------------------------------------------------------------------------- /packages/dalek/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/package.json -------------------------------------------------------------------------------- /packages/dalek/test/dalek.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/test/dalek.test.js -------------------------------------------------------------------------------- /packages/dalek/test/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dalek/test/runner.js -------------------------------------------------------------------------------- /packages/deprecation-cop/.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /packages/deprecation-cop/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /packages/deprecation-cop/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/deprecation-cop/LICENSE.md -------------------------------------------------------------------------------- /packages/deprecation-cop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/deprecation-cop/README.md -------------------------------------------------------------------------------- /packages/deprecation-cop/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/deprecation-cop/coffeelint.json -------------------------------------------------------------------------------- /packages/deprecation-cop/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/deprecation-cop/lib/main.js -------------------------------------------------------------------------------- /packages/deprecation-cop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/deprecation-cop/package.json -------------------------------------------------------------------------------- /packages/dev-live-reload/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/dev-live-reload/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/LICENSE.md -------------------------------------------------------------------------------- /packages/dev-live-reload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/README.md -------------------------------------------------------------------------------- /packages/dev-live-reload/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/lib/main.js -------------------------------------------------------------------------------- /packages/dev-live-reload/lib/ui-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/lib/ui-watcher.js -------------------------------------------------------------------------------- /packages/dev-live-reload/lib/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/lib/watcher.js -------------------------------------------------------------------------------- /packages/dev-live-reload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/dev-live-reload/package.json -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-index/index.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | activate: -> 3 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-folder/package.cson: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-folder/styles/3.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 3px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-folder/styles/sub/1.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-manifest/package.cson: -------------------------------------------------------------------------------- 1 | styleSheets: ['2', '1'] 2 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-manifest/styles/1.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/package-with-styles-manifest/styles/3.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 3px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/packages/package.cson: -------------------------------------------------------------------------------- 1 | styleSheets: ['2', '1'] 2 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/packages/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": true 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/packages/styles/1.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/packages/styles/3.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 3px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/static/atom.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/theme-with-index-less/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "ui" 3 | } 4 | -------------------------------------------------------------------------------- /packages/dev-live-reload/spec/fixtures/theme-with-syntax-variables/styles/editor.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/exception-reporting/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/exception-reporting/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/exception-reporting/LICENSE.md -------------------------------------------------------------------------------- /packages/exception-reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/exception-reporting/README.md -------------------------------------------------------------------------------- /packages/exception-reporting/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/exception-reporting/lib/main.js -------------------------------------------------------------------------------- /packages/exception-reporting/lib/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/exception-reporting/lib/reporter.js -------------------------------------------------------------------------------- /packages/exception-reporting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/exception-reporting/package.json -------------------------------------------------------------------------------- /packages/git-diff/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/LICENSE.md -------------------------------------------------------------------------------- /packages/git-diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/README.md -------------------------------------------------------------------------------- /packages/git-diff/keymaps/git-diff.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/keymaps/git-diff.cson -------------------------------------------------------------------------------- /packages/git-diff/lib/diff-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/lib/diff-list-view.js -------------------------------------------------------------------------------- /packages/git-diff/lib/git-diff-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/lib/git-diff-view.js -------------------------------------------------------------------------------- /packages/git-diff/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/lib/helpers.js -------------------------------------------------------------------------------- /packages/git-diff/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/lib/main.js -------------------------------------------------------------------------------- /packages/git-diff/menus/git-diff.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/menus/git-diff.cson -------------------------------------------------------------------------------- /packages/git-diff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/package.json -------------------------------------------------------------------------------- /packages/git-diff/spec/fixtures/working-dir/git.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /packages/git-diff/spec/fixtures/working-dir/git.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 065a272b55ec2ee84530dffd60b6869f7bf5d99c 2 | -------------------------------------------------------------------------------- /packages/git-diff/spec/fixtures/working-dir/sample.txt: -------------------------------------------------------------------------------- 1 | Some text. 2 | -------------------------------------------------------------------------------- /packages/git-diff/spec/git-diff-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/spec/git-diff-spec.js -------------------------------------------------------------------------------- /packages/git-diff/spec/init-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/spec/init-spec.js -------------------------------------------------------------------------------- /packages/git-diff/styles/git-diff.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/git-diff/styles/git-diff.less -------------------------------------------------------------------------------- /packages/go-to-line/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | node_modules 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /packages/go-to-line/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/LICENSE.md -------------------------------------------------------------------------------- /packages/go-to-line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/README.md -------------------------------------------------------------------------------- /packages/go-to-line/keymaps/go-to-line.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/keymaps/go-to-line.cson -------------------------------------------------------------------------------- /packages/go-to-line/lib/go-to-line-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/lib/go-to-line-view.js -------------------------------------------------------------------------------- /packages/go-to-line/menus/go-to-line.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/menus/go-to-line.cson -------------------------------------------------------------------------------- /packages/go-to-line/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/package.json -------------------------------------------------------------------------------- /packages/go-to-line/spec/fixtures/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/spec/fixtures/sample.js -------------------------------------------------------------------------------- /packages/go-to-line/spec/go-to-line-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/go-to-line/spec/go-to-line-spec.js -------------------------------------------------------------------------------- /packages/grammar-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/grammar-selector/README.md -------------------------------------------------------------------------------- /packages/grammar-selector/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/grammar-selector/lib/main.js -------------------------------------------------------------------------------- /packages/grammar-selector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/grammar-selector/package.json -------------------------------------------------------------------------------- /packages/incompatible-packages/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /packages/incompatible-packages/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/incompatible-packages/LICENSE.md -------------------------------------------------------------------------------- /packages/incompatible-packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/incompatible-packages/README.md -------------------------------------------------------------------------------- /packages/incompatible-packages/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/incompatible-packages/lib/main.js -------------------------------------------------------------------------------- /packages/incompatible-packages/lib/view-uri.js: -------------------------------------------------------------------------------- 1 | /** @babel */ 2 | 3 | export default 'atom://incompatible-packages'; 4 | -------------------------------------------------------------------------------- /packages/incompatible-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/incompatible-packages/package.json -------------------------------------------------------------------------------- /packages/incompatible-packages/spec/fixtures/incompatible-package/bad.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/language-rust-bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/language-rust-bundled/README.md -------------------------------------------------------------------------------- /packages/language-rust-bundled/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/language-rust-bundled/lib/main.js -------------------------------------------------------------------------------- /packages/language-rust-bundled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/language-rust-bundled/package.json -------------------------------------------------------------------------------- /packages/line-ending-selector/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/.gitattributes -------------------------------------------------------------------------------- /packages/line-ending-selector/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/line-ending-selector/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/LICENSE.md -------------------------------------------------------------------------------- /packages/line-ending-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/README.md -------------------------------------------------------------------------------- /packages/line-ending-selector/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/lib/helpers.js -------------------------------------------------------------------------------- /packages/line-ending-selector/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/lib/main.js -------------------------------------------------------------------------------- /packages/line-ending-selector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/line-ending-selector/package.json -------------------------------------------------------------------------------- /packages/line-ending-selector/spec/fixtures/mixed-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Mixed 4 | -------------------------------------------------------------------------------- /packages/line-ending-selector/spec/fixtures/unix-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Unix 4 | -------------------------------------------------------------------------------- /packages/line-ending-selector/spec/fixtures/windows-endings.md: -------------------------------------------------------------------------------- 1 | Hello 2 | Goodbye 3 | Windows 4 | -------------------------------------------------------------------------------- /packages/link/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /packages/link/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | -------------------------------------------------------------------------------- /packages/link/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/LICENSE.md -------------------------------------------------------------------------------- /packages/link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/README.md -------------------------------------------------------------------------------- /packages/link/keymaps/links.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/keymaps/links.cson -------------------------------------------------------------------------------- /packages/link/lib/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/lib/link.js -------------------------------------------------------------------------------- /packages/link/menus/link.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/menus/link.cson -------------------------------------------------------------------------------- /packages/link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/package.json -------------------------------------------------------------------------------- /packages/link/spec/link-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/link/spec/link-spec.js -------------------------------------------------------------------------------- /packages/one-dark-syntax/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/LICENSE.md -------------------------------------------------------------------------------- /packages/one-dark-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/README.md -------------------------------------------------------------------------------- /packages/one-dark-syntax/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/index.less -------------------------------------------------------------------------------- /packages/one-dark-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/package.json -------------------------------------------------------------------------------- /packages/one-dark-syntax/styles/colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/styles/colors.less -------------------------------------------------------------------------------- /packages/one-dark-syntax/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-syntax/styles/editor.less -------------------------------------------------------------------------------- /packages/one-dark-ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/one-dark-ui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/LICENSE.md -------------------------------------------------------------------------------- /packages/one-dark-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/README.md -------------------------------------------------------------------------------- /packages/one-dark-ui/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/index.less -------------------------------------------------------------------------------- /packages/one-dark-ui/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/lib/main.js -------------------------------------------------------------------------------- /packages/one-dark-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/package.json -------------------------------------------------------------------------------- /packages/one-dark-ui/spec/theme-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/spec/theme-spec.js -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/atom.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/badges.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/buttons.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/config.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/core.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/docks.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/docks.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/dropdowns.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/editor.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/git.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/git.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/inputs.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/key-binding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/key-binding.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/lists.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/messages.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/modal.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/nav.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/packages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/packages.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/panels.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/panes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/panes.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/progress.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/settings.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/sites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/sites.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/status-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/status-bar.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/tabs.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/text.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/title-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/title-bar.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/tooltips.less -------------------------------------------------------------------------------- /packages/one-dark-ui/styles/tree-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-dark-ui/styles/tree-view.less -------------------------------------------------------------------------------- /packages/one-light-syntax/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-syntax/LICENSE.md -------------------------------------------------------------------------------- /packages/one-light-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-syntax/README.md -------------------------------------------------------------------------------- /packages/one-light-syntax/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-syntax/index.less -------------------------------------------------------------------------------- /packages/one-light-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-syntax/package.json -------------------------------------------------------------------------------- /packages/one-light-ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/one-light-ui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/LICENSE.md -------------------------------------------------------------------------------- /packages/one-light-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/README.md -------------------------------------------------------------------------------- /packages/one-light-ui/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/index.less -------------------------------------------------------------------------------- /packages/one-light-ui/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/lib/main.js -------------------------------------------------------------------------------- /packages/one-light-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/package.json -------------------------------------------------------------------------------- /packages/one-light-ui/spec/theme-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/spec/theme-spec.js -------------------------------------------------------------------------------- /packages/one-light-ui/styles/atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/atom.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/badges.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/buttons.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/config.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/core.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/docks.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/docks.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/editor.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/git.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/git.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/inputs.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/lists.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/modal.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/nav.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/panels.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/panes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/panes.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/sites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/sites.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/tabs.less -------------------------------------------------------------------------------- /packages/one-light-ui/styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/one-light-ui/styles/text.less -------------------------------------------------------------------------------- /packages/solarized-dark-syntax/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/solarized-dark-syntax/LICENSE.md -------------------------------------------------------------------------------- /packages/solarized-dark-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/solarized-dark-syntax/README.md -------------------------------------------------------------------------------- /packages/solarized-dark-syntax/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/solarized-dark-syntax/index.less -------------------------------------------------------------------------------- /packages/solarized-light-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/solarized-light-syntax/README.md -------------------------------------------------------------------------------- /packages/update-package-dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /packages/welcome/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/welcome/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/LICENSE.md -------------------------------------------------------------------------------- /packages/welcome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/README.md -------------------------------------------------------------------------------- /packages/welcome/assets/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/assets/code.svg -------------------------------------------------------------------------------- /packages/welcome/assets/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/assets/package.svg -------------------------------------------------------------------------------- /packages/welcome/assets/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/assets/project.svg -------------------------------------------------------------------------------- /packages/welcome/assets/shortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/assets/shortcut.svg -------------------------------------------------------------------------------- /packages/welcome/assets/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/assets/theme.svg -------------------------------------------------------------------------------- /packages/welcome/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/docs/events.md -------------------------------------------------------------------------------- /packages/welcome/lib/consent-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/consent-view.js -------------------------------------------------------------------------------- /packages/welcome/lib/guide-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/guide-view.js -------------------------------------------------------------------------------- /packages/welcome/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/main.js -------------------------------------------------------------------------------- /packages/welcome/lib/reporter-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/reporter-proxy.js -------------------------------------------------------------------------------- /packages/welcome/lib/welcome-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/welcome-package.js -------------------------------------------------------------------------------- /packages/welcome/lib/welcome-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/lib/welcome-view.js -------------------------------------------------------------------------------- /packages/welcome/menus/welcome.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/menus/welcome.cson -------------------------------------------------------------------------------- /packages/welcome/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/package-lock.json -------------------------------------------------------------------------------- /packages/welcome/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/package.json -------------------------------------------------------------------------------- /packages/welcome/styles/welcome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/styles/welcome.less -------------------------------------------------------------------------------- /packages/welcome/test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/test/helpers.js -------------------------------------------------------------------------------- /packages/welcome/test/welcome.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/packages/welcome/test/welcome.test.js -------------------------------------------------------------------------------- /resources/app-icons/beta/atom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/atom.icns -------------------------------------------------------------------------------- /resources/app-icons/beta/atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/atom.ico -------------------------------------------------------------------------------- /resources/app-icons/beta/png/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/1024.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/128.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/16.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/24.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/256.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/32.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/48.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/512.png -------------------------------------------------------------------------------- /resources/app-icons/beta/png/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/beta/png/64.png -------------------------------------------------------------------------------- /resources/app-icons/dev/atom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/atom.icns -------------------------------------------------------------------------------- /resources/app-icons/dev/atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/atom.ico -------------------------------------------------------------------------------- /resources/app-icons/dev/png/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/1024.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/128.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/16.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/24.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/256.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/32.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/48.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/512.png -------------------------------------------------------------------------------- /resources/app-icons/dev/png/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/dev/png/64.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/atom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/atom.icns -------------------------------------------------------------------------------- /resources/app-icons/nightly/atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/atom.ico -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/1024.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/128.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/16.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/24.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/256.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/32.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/48.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/512.png -------------------------------------------------------------------------------- /resources/app-icons/nightly/png/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/nightly/png/64.png -------------------------------------------------------------------------------- /resources/app-icons/stable/atom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/atom.icns -------------------------------------------------------------------------------- /resources/app-icons/stable/atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/atom.ico -------------------------------------------------------------------------------- /resources/app-icons/stable/png/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/1024.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/128.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/16.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/24.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/256.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/32.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/48.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/512.png -------------------------------------------------------------------------------- /resources/app-icons/stable/png/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/app-icons/stable/png/64.png -------------------------------------------------------------------------------- /resources/linux/atom.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/linux/atom.desktop.in -------------------------------------------------------------------------------- /resources/linux/atom.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/linux/atom.policy -------------------------------------------------------------------------------- /resources/linux/debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/linux/debian/control.in -------------------------------------------------------------------------------- /resources/linux/redhat/atom.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/linux/redhat/atom.spec.in -------------------------------------------------------------------------------- /resources/mac/atom-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/mac/atom-Info.plist -------------------------------------------------------------------------------- /resources/mac/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/mac/entitlements.plist -------------------------------------------------------------------------------- /resources/mac/file.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/mac/file.icns -------------------------------------------------------------------------------- /resources/mac/helper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/mac/helper-Info.plist -------------------------------------------------------------------------------- /resources/win/apm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/apm.cmd -------------------------------------------------------------------------------- /resources/win/apm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/apm.sh -------------------------------------------------------------------------------- /resources/win/atom.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/atom.cmd -------------------------------------------------------------------------------- /resources/win/atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/atom.js -------------------------------------------------------------------------------- /resources/win/atom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/atom.sh -------------------------------------------------------------------------------- /resources/win/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/file.ico -------------------------------------------------------------------------------- /resources/win/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/folder.ico -------------------------------------------------------------------------------- /resources/win/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/resources/win/loading.gif -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/bootstrap.cmd -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/build -------------------------------------------------------------------------------- /script/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/build.cmd -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/clean -------------------------------------------------------------------------------- /script/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/clean.cmd -------------------------------------------------------------------------------- /script/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/config.js -------------------------------------------------------------------------------- /script/deprecated-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/deprecated-packages.json -------------------------------------------------------------------------------- /script/lib/backup-node-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/backup-node-modules.js -------------------------------------------------------------------------------- /script/lib/check-chromedriver-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/check-chromedriver-version.js -------------------------------------------------------------------------------- /script/lib/clean-caches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/clean-caches.js -------------------------------------------------------------------------------- /script/lib/clean-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/clean-dependencies.js -------------------------------------------------------------------------------- /script/lib/clean-output-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/clean-output-directory.js -------------------------------------------------------------------------------- /script/lib/code-sign-on-mac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/code-sign-on-mac.js -------------------------------------------------------------------------------- /script/lib/code-sign-on-windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/code-sign-on-windows.js -------------------------------------------------------------------------------- /script/lib/compress-artifacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/compress-artifacts.js -------------------------------------------------------------------------------- /script/lib/copy-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/copy-assets.js -------------------------------------------------------------------------------- /script/lib/create-debian-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/create-debian-package.js -------------------------------------------------------------------------------- /script/lib/create-rpm-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/create-rpm-package.js -------------------------------------------------------------------------------- /script/lib/create-windows-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/create-windows-installer.js -------------------------------------------------------------------------------- /script/lib/delete-msbuild-from-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/delete-msbuild-from-path.js -------------------------------------------------------------------------------- /script/lib/dependencies-fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/dependencies-fingerprint.js -------------------------------------------------------------------------------- /script/lib/download-file-from-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/download-file-from-github.js -------------------------------------------------------------------------------- /script/lib/dump-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/dump-symbols.js -------------------------------------------------------------------------------- /script/lib/expand-glob-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/expand-glob-paths.js -------------------------------------------------------------------------------- /script/lib/generate-api-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/generate-api-docs.js -------------------------------------------------------------------------------- /script/lib/generate-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/generate-metadata.js -------------------------------------------------------------------------------- /script/lib/generate-module-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/generate-module-cache.js -------------------------------------------------------------------------------- /script/lib/generate-startup-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/generate-startup-snapshot.js -------------------------------------------------------------------------------- /script/lib/get-license-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/get-license-text.js -------------------------------------------------------------------------------- /script/lib/handle-tilde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/handle-tilde.js -------------------------------------------------------------------------------- /script/lib/install-apm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/install-apm.js -------------------------------------------------------------------------------- /script/lib/install-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/install-application.js -------------------------------------------------------------------------------- /script/lib/install-script-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/install-script-dependencies.js -------------------------------------------------------------------------------- /script/lib/kill-running-atom-instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/kill-running-atom-instances.js -------------------------------------------------------------------------------- /script/lib/lint-coffee-script-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/lint-coffee-script-paths.js -------------------------------------------------------------------------------- /script/lib/lint-java-script-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/lint-java-script-paths.js -------------------------------------------------------------------------------- /script/lib/lint-less-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/lint-less-paths.js -------------------------------------------------------------------------------- /script/lib/notarize-on-mac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/notarize-on-mac.js -------------------------------------------------------------------------------- /script/lib/package-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/package-application.js -------------------------------------------------------------------------------- /script/lib/prebuild-less-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/prebuild-less-cache.js -------------------------------------------------------------------------------- /script/lib/read-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/read-files.js -------------------------------------------------------------------------------- /script/lib/run-apm-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/run-apm-install.js -------------------------------------------------------------------------------- /script/lib/spawn-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/spawn-sync.js -------------------------------------------------------------------------------- /script/lib/test-sign-on-mac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/test-sign-on-mac.js -------------------------------------------------------------------------------- /script/lib/transpile-babel-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/transpile-babel-paths.js -------------------------------------------------------------------------------- /script/lib/transpile-cson-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/transpile-cson-paths.js -------------------------------------------------------------------------------- /script/lib/transpile-peg-js-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/transpile-peg-js-paths.js -------------------------------------------------------------------------------- /script/lib/update-dependency/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/update-dependency/git.js -------------------------------------------------------------------------------- /script/lib/update-dependency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/update-dependency/index.js -------------------------------------------------------------------------------- /script/lib/update-dependency/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/update-dependency/main.js -------------------------------------------------------------------------------- /script/lib/update-dependency/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/update-dependency/util.js -------------------------------------------------------------------------------- /script/lib/verify-machine-requirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lib/verify-machine-requirements.js -------------------------------------------------------------------------------- /script/license-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/license-overrides.js -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lint -------------------------------------------------------------------------------- /script/lint.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/lint.cmd -------------------------------------------------------------------------------- /script/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/package-lock.json -------------------------------------------------------------------------------- /script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/package.json -------------------------------------------------------------------------------- /script/postprocess-junit-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/postprocess-junit-results -------------------------------------------------------------------------------- /script/postprocess-junit-results.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/postprocess-junit-results.cmd -------------------------------------------------------------------------------- /script/redownload-electron-bins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/redownload-electron-bins.js -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/test -------------------------------------------------------------------------------- /script/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/test.cmd -------------------------------------------------------------------------------- /script/update-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/update-server/README.md -------------------------------------------------------------------------------- /script/update-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/update-server/package-lock.json -------------------------------------------------------------------------------- /script/update-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/update-server/package.json -------------------------------------------------------------------------------- /script/update-server/run-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/update-server/run-server.js -------------------------------------------------------------------------------- /script/verify-snapshot-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/verify-snapshot-script -------------------------------------------------------------------------------- /script/vsts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/README.md -------------------------------------------------------------------------------- /script/vsts/get-release-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/get-release-version.js -------------------------------------------------------------------------------- /script/vsts/lib/release-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/lib/release-notes.js -------------------------------------------------------------------------------- /script/vsts/lib/upload-linux-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/lib/upload-linux-packages.js -------------------------------------------------------------------------------- /script/vsts/lib/upload-to-azure-blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/lib/upload-to-azure-blob.js -------------------------------------------------------------------------------- /script/vsts/lib/upload-to-s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/lib/upload-to-s3.js -------------------------------------------------------------------------------- /script/vsts/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/lint.yml -------------------------------------------------------------------------------- /script/vsts/nightly-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/nightly-release.yml -------------------------------------------------------------------------------- /script/vsts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/package-lock.json -------------------------------------------------------------------------------- /script/vsts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/package.json -------------------------------------------------------------------------------- /script/vsts/platforms/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/linux.yml -------------------------------------------------------------------------------- /script/vsts/platforms/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/macos.yml -------------------------------------------------------------------------------- /script/vsts/platforms/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/templates/build.yml -------------------------------------------------------------------------------- /script/vsts/platforms/templates/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/templates/cache.yml -------------------------------------------------------------------------------- /script/vsts/platforms/templates/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/templates/test.yml -------------------------------------------------------------------------------- /script/vsts/platforms/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/platforms/windows.yml -------------------------------------------------------------------------------- /script/vsts/pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/pull-requests.yml -------------------------------------------------------------------------------- /script/vsts/release-branch-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/release-branch-build.yml -------------------------------------------------------------------------------- /script/vsts/upload-artifacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/upload-artifacts.js -------------------------------------------------------------------------------- /script/vsts/upload-crash-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/script/vsts/upload-crash-reports.js -------------------------------------------------------------------------------- /script/vsts/x64-cache-key: -------------------------------------------------------------------------------- 1 | x64 2 | -------------------------------------------------------------------------------- /script/vsts/x86-cache-key: -------------------------------------------------------------------------------- 1 | x86 2 | -------------------------------------------------------------------------------- /spec/application-delegate-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/application-delegate-spec.js -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/atom-environment-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/atom-environment-spec.js -------------------------------------------------------------------------------- /spec/atom-paths-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/atom-paths-spec.js -------------------------------------------------------------------------------- /spec/atom-protocol-handler-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/atom-protocol-handler-spec.js -------------------------------------------------------------------------------- /spec/atom-reporter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/atom-reporter.coffee -------------------------------------------------------------------------------- /spec/auto-update-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/auto-update-manager-spec.js -------------------------------------------------------------------------------- /spec/babel-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/babel-spec.js -------------------------------------------------------------------------------- /spec/buffered-node-process-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/buffered-node-process-spec.js -------------------------------------------------------------------------------- /spec/buffered-process-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/buffered-process-spec.js -------------------------------------------------------------------------------- /spec/clipboard-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/clipboard-spec.js -------------------------------------------------------------------------------- /spec/command-installer-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/command-installer-spec.js -------------------------------------------------------------------------------- /spec/command-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/command-registry-spec.js -------------------------------------------------------------------------------- /spec/compile-cache-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/compile-cache-spec.coffee -------------------------------------------------------------------------------- /spec/config-file-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/config-file-spec.js -------------------------------------------------------------------------------- /spec/config-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/config-spec.js -------------------------------------------------------------------------------- /spec/context-menu-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/context-menu-manager-spec.js -------------------------------------------------------------------------------- /spec/decoration-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/decoration-manager-spec.js -------------------------------------------------------------------------------- /spec/default-directory-provider-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/default-directory-provider-spec.js -------------------------------------------------------------------------------- /spec/default-directory-searcher-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/default-directory-searcher-spec.js -------------------------------------------------------------------------------- /spec/deserializer-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/deserializer-manager-spec.js -------------------------------------------------------------------------------- /spec/dock-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/dock-spec.js -------------------------------------------------------------------------------- /spec/file-system-blob-store-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/file-system-blob-store-spec.js -------------------------------------------------------------------------------- /spec/fixtures/babel/babel-comment.js: -------------------------------------------------------------------------------- 1 | /** @babel */ 2 | 3 | module.exports = v => v + 1 4 | -------------------------------------------------------------------------------- /spec/fixtures/babel/babel-double-quotes.js: -------------------------------------------------------------------------------- 1 | "use babel"; 2 | 3 | module.exports = v => v + 1 4 | -------------------------------------------------------------------------------- /spec/fixtures/babel/babel-single-quotes.js: -------------------------------------------------------------------------------- 1 | 'use babel'; 2 | 3 | module.exports = v => v + 1 4 | -------------------------------------------------------------------------------- /spec/fixtures/babel/flow-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/babel/flow-comment.js -------------------------------------------------------------------------------- /spec/fixtures/babel/flow-slash-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/babel/flow-slash-comment.js -------------------------------------------------------------------------------- /spec/fixtures/babel/invalid.js: -------------------------------------------------------------------------------- 1 | 'use 6to6'; 2 | 3 | export default 42; 4 | -------------------------------------------------------------------------------- /spec/fixtures/coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/coffee.coffee -------------------------------------------------------------------------------- /spec/fixtures/cson.cson: -------------------------------------------------------------------------------- 1 | a: 4 2 | -------------------------------------------------------------------------------- /spec/fixtures/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/css.css -------------------------------------------------------------------------------- /spec/fixtures/dir/a: -------------------------------------------------------------------------------- 1 | aaa bbb 2 | cc aa cc 3 | dollar$bill -------------------------------------------------------------------------------- /spec/fixtures/dir/a-dir/oh-git: -------------------------------------------------------------------------------- 1 | bbb aaaa -------------------------------------------------------------------------------- /spec/fixtures/dir/b: -------------------------------------------------------------------------------- 1 | aaa ccc 2 | -------------------------------------------------------------------------------- /spec/fixtures/dir/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/dir/c -------------------------------------------------------------------------------- /spec/fixtures/dir/file-detected-as-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/dir/file-detected-as-binary -------------------------------------------------------------------------------- /spec/fixtures/dir/file-with-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/dir/file-with-unicode -------------------------------------------------------------------------------- /spec/fixtures/dir/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/git/ignore.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/ignore.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/git/ignore.git/config -------------------------------------------------------------------------------- /spec/fixtures/git/ignore.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/git/ignore.git/index -------------------------------------------------------------------------------- /spec/fixtures/git/ignore.git/info/exclude: -------------------------------------------------------------------------------- 1 | a.txt 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/ignore.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | ef046e9eecaa5255ea5e9817132d4001724d6ae1 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/git/master.git/config -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/git/master.git/index -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | ef046e9eecaa5255ea5e9817132d4001724d6ae1 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/worktrees/worktree-dir/HEAD: -------------------------------------------------------------------------------- 1 | ef046e9eecaa5255ea5e9817132d4001724d6ae1 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/master.git/worktrees/worktree-dir/commondir: -------------------------------------------------------------------------------- 1 | ../.. 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | coverage 5 | logs 6 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/git.git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/You-Dont-Need-jQuery 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/test/css.spec.js: -------------------------------------------------------------------------------- 1 | // test for CSS related -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/test/dom.spec.js: -------------------------------------------------------------------------------- 1 | // test for CSS and style related -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/You-Dont-Need-jQuery/test/utilities.spec.js: -------------------------------------------------------------------------------- 1 | // test for Utilities related -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/You-Dont-Need-jQuery/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/You-Dont-Need-jQuery/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | 2e9bbc77d60f20eb462ead5b2ac7405b62b9b90a 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/You-Dont-Need-jQuery/gitdir: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/test 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | 9f0218b7652b622afea799a4723490c43e1af1fe 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/gitdir: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/refs/heads/master: -------------------------------------------------------------------------------- 1 | 9f0218b7652b622afea799a4723490c43e1af1fe 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/refs/heads/test: -------------------------------------------------------------------------------- 1 | 0525ef667328cb1f86b1ddf523db4a064e1590fa 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/modules/jstips/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | d2b0ad9cbc6f6c4372e8956e5cc5af771b2342e5 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/git.git/refs/remotes/origin/master: -------------------------------------------------------------------------------- 1 | d2b0ad9cbc6f6c4372e8956e5cc5af771b2342e5 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/jstips/git.git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/jstips 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/repo-with-submodules/jstips/resources/log.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | console.log('Hello world'); 3 | })(); -------------------------------------------------------------------------------- /spec/fixtures/git/working-dir/.gitignore: -------------------------------------------------------------------------------- 1 | poop 2 | ignored.txt 3 | -------------------------------------------------------------------------------- /spec/fixtures/git/working-dir/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/git/working-dir/git.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /spec/fixtures/git/working-dir/git.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 8a9c86f1cb1f14b8f436eb91f4b052c8802ca99e 2 | -------------------------------------------------------------------------------- /spec/fixtures/indentation/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/classes.js -------------------------------------------------------------------------------- /spec/fixtures/indentation/expressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/expressions.js -------------------------------------------------------------------------------- /spec/fixtures/indentation/if_then_else.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/if_then_else.js -------------------------------------------------------------------------------- /spec/fixtures/indentation/jsx.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/jsx.jsx -------------------------------------------------------------------------------- /spec/fixtures/indentation/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/switch.js -------------------------------------------------------------------------------- /spec/fixtures/indentation/while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/indentation/while.js -------------------------------------------------------------------------------- /spec/fixtures/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/lorem.txt -------------------------------------------------------------------------------- /spec/fixtures/module-cache/file.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/native-cache/file-1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { return 1; } 2 | -------------------------------------------------------------------------------- /spec/fixtures/native-cache/file-2.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { return 2; } 2 | -------------------------------------------------------------------------------- /spec/fixtures/native-cache/file-3.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { return 3; } 2 | -------------------------------------------------------------------------------- /spec/fixtures/native-cache/file-4.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { return "file-4" } 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-that-throws-an-exception/index.coffee: -------------------------------------------------------------------------------- 1 | throw new Error("This package throws an exception") 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-broken-keymap/keymaps/broken.json: -------------------------------------------------------------------------------- 1 | INVALID 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-broken-package-json/package.json: -------------------------------------------------------------------------------- 1 | INVALID 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-cached-incompatible-native-module/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-empty-activation-commands/index.coffee: -------------------------------------------------------------------------------- 1 | module.exports = activate: -> 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-empty-activation-hooks/index.coffee: -------------------------------------------------------------------------------- 1 | module.exports = activate: -> 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-empty-keymap/keymaps/keymap.cson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-empty-menu/menus/menu.cson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-empty-workspace-openers/index.coffee: -------------------------------------------------------------------------------- 1 | module.exports = activate: -> 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-ignored-incompatible-native-module/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-ignored-incompatible-native-module/node_modules/compatible-native-module/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-ignored-incompatible-native-module/node_modules/native-module/build/Release/native.node: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-incompatible-native-module/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-incompatible-native-module/node_modules/native-module/build/Release/native.node: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-index/index.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | activate: -> 3 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-invalid-grammar/grammars/grammar.json: -------------------------------------------------------------------------------- 1 | >< 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-invalid-settings/settings/settings.json: -------------------------------------------------------------------------------- 1 | >< 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-invalid-styles/styles/index.less: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-keymaps-manifest/keymaps/keymap-3.cson: -------------------------------------------------------------------------------- 1 | ".test-3": 2 | "ctrl-y": "keymap-3" 3 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-main/main-module.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | activate: -> 3 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-no-activate/index.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-serialize-error/package.cson: -------------------------------------------------------------------------------- 1 | 'main': 'index.coffee' 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-style-sheets-manifest/package.cson: -------------------------------------------------------------------------------- 1 | styleSheets: ['2', '1'] 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-style-sheets-manifest/styles/1.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-style-sheets-manifest/styles/3.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 3px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-styles/styles/1.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-styles/styles/3.test-context.css: -------------------------------------------------------------------------------- 1 | #jasmine-content { 2 | font-size: 3px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-styles/styles/4.css: -------------------------------------------------------------------------------- 1 | a { color: red } 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-stylesheets-manifest/package.cson: -------------------------------------------------------------------------------- 1 | styleSheets: ['2', '1'] 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-with-tree-sitter-grammar/grammars/fake-parser.js: -------------------------------------------------------------------------------- 1 | exports.isFakeTreeSitterParser = true 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/package-without-module/package.cson: -------------------------------------------------------------------------------- 1 | "name": "perfect" 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/theme-with-index-css/index.css: -------------------------------------------------------------------------------- 1 | atom-text-editor { 2 | padding-top: 1234px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/theme-with-index-css/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "ui" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/theme-with-index-less/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "ui" 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/packages/theme-with-invalid-styles/index.less: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /spec/fixtures/packages/theme-with-syntax-variables/styles/editor.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/sample-with-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample-with-comments.js -------------------------------------------------------------------------------- /spec/fixtures/sample-with-many-folds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample-with-many-folds.js -------------------------------------------------------------------------------- /spec/fixtures/sample-with-tabs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample-with-tabs.coffee -------------------------------------------------------------------------------- /spec/fixtures/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample.js -------------------------------------------------------------------------------- /spec/fixtures/sample.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample.less -------------------------------------------------------------------------------- /spec/fixtures/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/sample.txt -------------------------------------------------------------------------------- /spec/fixtures/script-with-deprecations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/script-with-deprecations.js -------------------------------------------------------------------------------- /spec/fixtures/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/script.js -------------------------------------------------------------------------------- /spec/fixtures/shebang: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | 3 | puts "Atom fixture test" 4 | -------------------------------------------------------------------------------- /spec/fixtures/task-spec-handler.coffee: -------------------------------------------------------------------------------- 1 | module.exports = -> 2 | emit("some-event", 1, 2, 3) 3 | 'hello' 4 | -------------------------------------------------------------------------------- /spec/fixtures/testdir/sample-theme-1/readme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/testdir/sample-theme-1/src/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/testdir/sample-theme-2/readme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/testdir/sample-theme-2/src/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/testdir/sample-theme-2/src/js/plugin/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/two-hundred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/two-hundred.txt -------------------------------------------------------------------------------- /spec/fixtures/typescript/invalid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/typescript/invalid.ts -------------------------------------------------------------------------------- /spec/fixtures/typescript/valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/fixtures/typescript/valid.ts -------------------------------------------------------------------------------- /spec/git-repository-provider-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/git-repository-provider-spec.js -------------------------------------------------------------------------------- /spec/git-repository-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/git-repository-spec.js -------------------------------------------------------------------------------- /spec/grammar-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/grammar-registry-spec.js -------------------------------------------------------------------------------- /spec/gutter-container-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/gutter-container-spec.js -------------------------------------------------------------------------------- /spec/gutter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/gutter-spec.js -------------------------------------------------------------------------------- /spec/helpers/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/helpers/random.js -------------------------------------------------------------------------------- /spec/helpers/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/helpers/words.js -------------------------------------------------------------------------------- /spec/history-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/history-manager-spec.js -------------------------------------------------------------------------------- /spec/integration/helpers/atom-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/integration/helpers/atom-launcher.sh -------------------------------------------------------------------------------- /spec/integration/helpers/start-atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/integration/helpers/start-atom.js -------------------------------------------------------------------------------- /spec/integration/smoke-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/integration/smoke-spec.js -------------------------------------------------------------------------------- /spec/jasmine-junit-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/jasmine-junit-reporter.js -------------------------------------------------------------------------------- /spec/jasmine-list-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/jasmine-list-reporter.js -------------------------------------------------------------------------------- /spec/jasmine-test-runner.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/jasmine-test-runner.coffee -------------------------------------------------------------------------------- /spec/keymap-extensions-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/keymap-extensions-spec.js -------------------------------------------------------------------------------- /spec/main-process/atom-window.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/main-process/atom-window.test.js -------------------------------------------------------------------------------- /spec/main-process/mocha-test-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/main-process/mocha-test-runner.js -------------------------------------------------------------------------------- /spec/menu-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/menu-manager-spec.js -------------------------------------------------------------------------------- /spec/menu-sort-helpers-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/menu-sort-helpers-spec.js -------------------------------------------------------------------------------- /spec/module-cache-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/module-cache-spec.js -------------------------------------------------------------------------------- /spec/native-compile-cache-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/native-compile-cache-spec.coffee -------------------------------------------------------------------------------- /spec/native-watcher-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/native-watcher-registry-spec.js -------------------------------------------------------------------------------- /spec/notification-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/notification-manager-spec.js -------------------------------------------------------------------------------- /spec/notification-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/notification-spec.js -------------------------------------------------------------------------------- /spec/package-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/package-manager-spec.js -------------------------------------------------------------------------------- /spec/package-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/package-spec.js -------------------------------------------------------------------------------- /spec/pane-axis-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/pane-axis-element-spec.js -------------------------------------------------------------------------------- /spec/pane-container-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/pane-container-element-spec.js -------------------------------------------------------------------------------- /spec/pane-container-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/pane-container-spec.js -------------------------------------------------------------------------------- /spec/pane-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/pane-element-spec.js -------------------------------------------------------------------------------- /spec/pane-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/pane-spec.js -------------------------------------------------------------------------------- /spec/panel-container-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/panel-container-element-spec.js -------------------------------------------------------------------------------- /spec/panel-container-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/panel-container-spec.js -------------------------------------------------------------------------------- /spec/panel-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/panel-spec.js -------------------------------------------------------------------------------- /spec/path-watcher-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/path-watcher-spec.js -------------------------------------------------------------------------------- /spec/project-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/project-spec.js -------------------------------------------------------------------------------- /spec/reopen-project-menu-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/reopen-project-menu-manager-spec.js -------------------------------------------------------------------------------- /spec/selection-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/selection-spec.js -------------------------------------------------------------------------------- /spec/spec-helper-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/spec-helper-platform.js -------------------------------------------------------------------------------- /spec/spec-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/spec-helper.coffee -------------------------------------------------------------------------------- /spec/squirrel-update-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/squirrel-update-spec.js -------------------------------------------------------------------------------- /spec/state-store-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/state-store-spec.js -------------------------------------------------------------------------------- /spec/style-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/style-manager-spec.js -------------------------------------------------------------------------------- /spec/styles-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/styles-element-spec.js -------------------------------------------------------------------------------- /spec/syntax-scope-map-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/syntax-scope-map-spec.js -------------------------------------------------------------------------------- /spec/task-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/task-spec.js -------------------------------------------------------------------------------- /spec/text-editor-component-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-editor-component-spec.js -------------------------------------------------------------------------------- /spec/text-editor-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-editor-element-spec.js -------------------------------------------------------------------------------- /spec/text-editor-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-editor-registry-spec.js -------------------------------------------------------------------------------- /spec/text-editor-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-editor-spec.js -------------------------------------------------------------------------------- /spec/text-mate-language-mode-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-mate-language-mode-spec.js -------------------------------------------------------------------------------- /spec/text-utils-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/text-utils-spec.js -------------------------------------------------------------------------------- /spec/theme-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/theme-manager-spec.js -------------------------------------------------------------------------------- /spec/title-bar-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/title-bar-spec.js -------------------------------------------------------------------------------- /spec/tooltip-manager-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/tooltip-manager-spec.js -------------------------------------------------------------------------------- /spec/tree-indenter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/tree-indenter-spec.js -------------------------------------------------------------------------------- /spec/tree-sitter-language-mode-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/tree-sitter-language-mode-spec.js -------------------------------------------------------------------------------- /spec/typescript-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/typescript-spec.js -------------------------------------------------------------------------------- /spec/update-process-env-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/update-process-env-spec.js -------------------------------------------------------------------------------- /spec/uri-handler-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/uri-handler-registry-spec.js -------------------------------------------------------------------------------- /spec/view-registry-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/view-registry-spec.js -------------------------------------------------------------------------------- /spec/window-event-handler-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/window-event-handler-spec.js -------------------------------------------------------------------------------- /spec/workspace-center-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/workspace-center-spec.js -------------------------------------------------------------------------------- /spec/workspace-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/workspace-element-spec.js -------------------------------------------------------------------------------- /spec/workspace-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/spec/workspace-spec.js -------------------------------------------------------------------------------- /src/application-delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/application-delegate.js -------------------------------------------------------------------------------- /src/atom-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/atom-environment.js -------------------------------------------------------------------------------- /src/atom-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/atom-paths.js -------------------------------------------------------------------------------- /src/auto-update-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/auto-update-manager.js -------------------------------------------------------------------------------- /src/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/babel.js -------------------------------------------------------------------------------- /src/buffered-node-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/buffered-node-process.js -------------------------------------------------------------------------------- /src/buffered-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/buffered-process.js -------------------------------------------------------------------------------- /src/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/clipboard.js -------------------------------------------------------------------------------- /src/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/coffee-script.js -------------------------------------------------------------------------------- /src/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/color.js -------------------------------------------------------------------------------- /src/command-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/command-installer.js -------------------------------------------------------------------------------- /src/command-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/command-registry.js -------------------------------------------------------------------------------- /src/compile-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/compile-cache.js -------------------------------------------------------------------------------- /src/config-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/config-file.js -------------------------------------------------------------------------------- /src/config-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/config-schema.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/config.js -------------------------------------------------------------------------------- /src/context-menu-manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/context-menu-manager.coffee -------------------------------------------------------------------------------- /src/core-uri-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/core-uri-handlers.js -------------------------------------------------------------------------------- /src/crash-reporter-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/crash-reporter-start.js -------------------------------------------------------------------------------- /src/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/cursor.js -------------------------------------------------------------------------------- /src/decoration-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/decoration-manager.js -------------------------------------------------------------------------------- /src/decoration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/decoration.js -------------------------------------------------------------------------------- /src/default-directory-provider.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/default-directory-provider.coffee -------------------------------------------------------------------------------- /src/default-directory-searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/default-directory-searcher.js -------------------------------------------------------------------------------- /src/delegated-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/delegated-listener.js -------------------------------------------------------------------------------- /src/deprecated-syntax-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/deprecated-syntax-selectors.js -------------------------------------------------------------------------------- /src/deserializer-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/deserializer-manager.js -------------------------------------------------------------------------------- /src/dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/dock.js -------------------------------------------------------------------------------- /src/electron-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/electron-shims.js -------------------------------------------------------------------------------- /src/file-system-blob-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/file-system-blob-store.js -------------------------------------------------------------------------------- /src/first-mate-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/first-mate-helpers.js -------------------------------------------------------------------------------- /src/get-app-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/get-app-name.js -------------------------------------------------------------------------------- /src/get-release-channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/get-release-channel.js -------------------------------------------------------------------------------- /src/get-window-load-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/get-window-load-settings.js -------------------------------------------------------------------------------- /src/git-repository-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/git-repository-provider.js -------------------------------------------------------------------------------- /src/git-repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/git-repository.js -------------------------------------------------------------------------------- /src/grammar-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/grammar-registry.js -------------------------------------------------------------------------------- /src/gutter-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/gutter-container.js -------------------------------------------------------------------------------- /src/gutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/gutter.js -------------------------------------------------------------------------------- /src/history-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/history-manager.js -------------------------------------------------------------------------------- /src/initialize-application-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/initialize-application-window.js -------------------------------------------------------------------------------- /src/initialize-benchmark-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/initialize-benchmark-window.js -------------------------------------------------------------------------------- /src/initialize-test-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/initialize-test-window.js -------------------------------------------------------------------------------- /src/ipc-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/ipc-helpers.js -------------------------------------------------------------------------------- /src/item-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/item-registry.js -------------------------------------------------------------------------------- /src/keymap-extensions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/keymap-extensions.coffee -------------------------------------------------------------------------------- /src/layer-decoration.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/layer-decoration.coffee -------------------------------------------------------------------------------- /src/less-compile-cache.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/less-compile-cache.coffee -------------------------------------------------------------------------------- /src/main-process/application-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/application-menu.js -------------------------------------------------------------------------------- /src/main-process/atom-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/atom-application.js -------------------------------------------------------------------------------- /src/main-process/atom-protocol-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/atom-protocol-handler.js -------------------------------------------------------------------------------- /src/main-process/atom-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/atom-window.js -------------------------------------------------------------------------------- /src/main-process/auto-update-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/auto-update-manager.js -------------------------------------------------------------------------------- /src/main-process/auto-updater-win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/auto-updater-win32.js -------------------------------------------------------------------------------- /src/main-process/context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/context-menu.js -------------------------------------------------------------------------------- /src/main-process/file-recovery-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/file-recovery-service.js -------------------------------------------------------------------------------- /src/main-process/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/main.js -------------------------------------------------------------------------------- /src/main-process/parse-command-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/parse-command-line.js -------------------------------------------------------------------------------- /src/main-process/spawner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/spawner.js -------------------------------------------------------------------------------- /src/main-process/squirrel-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/squirrel-update.js -------------------------------------------------------------------------------- /src/main-process/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/start.js -------------------------------------------------------------------------------- /src/main-process/win-powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/win-powershell.js -------------------------------------------------------------------------------- /src/main-process/win-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/main-process/win-shell.js -------------------------------------------------------------------------------- /src/menu-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/menu-helpers.js -------------------------------------------------------------------------------- /src/menu-manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/menu-manager.coffee -------------------------------------------------------------------------------- /src/menu-sort-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/menu-sort-helpers.js -------------------------------------------------------------------------------- /src/model.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/model.coffee -------------------------------------------------------------------------------- /src/module-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/module-cache.js -------------------------------------------------------------------------------- /src/module-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/module-utils.js -------------------------------------------------------------------------------- /src/native-compile-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/native-compile-cache.js -------------------------------------------------------------------------------- /src/native-watcher-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/native-watcher-registry.js -------------------------------------------------------------------------------- /src/notification-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/notification-manager.js -------------------------------------------------------------------------------- /src/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/notification.js -------------------------------------------------------------------------------- /src/null-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/null-grammar.js -------------------------------------------------------------------------------- /src/overlay-manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/overlay-manager.coffee -------------------------------------------------------------------------------- /src/package-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/package-manager.js -------------------------------------------------------------------------------- /src/package-transpilation-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/package-transpilation-registry.js -------------------------------------------------------------------------------- /src/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/package.js -------------------------------------------------------------------------------- /src/pane-axis-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-axis-element.js -------------------------------------------------------------------------------- /src/pane-axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-axis.js -------------------------------------------------------------------------------- /src/pane-container-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-container-element.js -------------------------------------------------------------------------------- /src/pane-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-container.js -------------------------------------------------------------------------------- /src/pane-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-element.js -------------------------------------------------------------------------------- /src/pane-resize-handle-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane-resize-handle-element.js -------------------------------------------------------------------------------- /src/pane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/pane.js -------------------------------------------------------------------------------- /src/panel-container-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/panel-container-element.js -------------------------------------------------------------------------------- /src/panel-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/panel-container.js -------------------------------------------------------------------------------- /src/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/panel.js -------------------------------------------------------------------------------- /src/path-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/path-watcher.js -------------------------------------------------------------------------------- /src/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/project.js -------------------------------------------------------------------------------- /src/protocol-handler-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/protocol-handler-installer.js -------------------------------------------------------------------------------- /src/register-default-commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/register-default-commands.coffee -------------------------------------------------------------------------------- /src/reopen-project-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/reopen-project-list-view.js -------------------------------------------------------------------------------- /src/reopen-project-menu-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/reopen-project-menu-manager.js -------------------------------------------------------------------------------- /src/replace-handler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/replace-handler.coffee -------------------------------------------------------------------------------- /src/ripgrep-directory-searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/ripgrep-directory-searcher.js -------------------------------------------------------------------------------- /src/scan-handler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/scan-handler.coffee -------------------------------------------------------------------------------- /src/scope-descriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/scope-descriptor.js -------------------------------------------------------------------------------- /src/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/selection.js -------------------------------------------------------------------------------- /src/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/selectors.js -------------------------------------------------------------------------------- /src/special-token-symbols.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/special-token-symbols.coffee -------------------------------------------------------------------------------- /src/startup-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/startup-time.js -------------------------------------------------------------------------------- /src/state-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/state-store.js -------------------------------------------------------------------------------- /src/storage-folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/storage-folder.js -------------------------------------------------------------------------------- /src/style-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/style-manager.js -------------------------------------------------------------------------------- /src/styles-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/styles-element.js -------------------------------------------------------------------------------- /src/syntax-scope-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/syntax-scope-map.js -------------------------------------------------------------------------------- /src/task-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/task-bootstrap.js -------------------------------------------------------------------------------- /src/task.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/task.coffee -------------------------------------------------------------------------------- /src/test.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/test.ejs -------------------------------------------------------------------------------- /src/text-editor-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-editor-component.js -------------------------------------------------------------------------------- /src/text-editor-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-editor-element.js -------------------------------------------------------------------------------- /src/text-editor-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-editor-registry.js -------------------------------------------------------------------------------- /src/text-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-editor.js -------------------------------------------------------------------------------- /src/text-mate-language-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-mate-language-mode.js -------------------------------------------------------------------------------- /src/text-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/text-utils.js -------------------------------------------------------------------------------- /src/theme-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/theme-manager.js -------------------------------------------------------------------------------- /src/theme-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/theme-package.js -------------------------------------------------------------------------------- /src/title-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/title-bar.js -------------------------------------------------------------------------------- /src/token-iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/token-iterator.js -------------------------------------------------------------------------------- /src/token.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/token.coffee -------------------------------------------------------------------------------- /src/tokenized-line.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tokenized-line.coffee -------------------------------------------------------------------------------- /src/tooltip-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tooltip-manager.js -------------------------------------------------------------------------------- /src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tooltip.js -------------------------------------------------------------------------------- /src/tree-indenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tree-indenter.js -------------------------------------------------------------------------------- /src/tree-sitter-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tree-sitter-grammar.js -------------------------------------------------------------------------------- /src/tree-sitter-language-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/tree-sitter-language-mode.js -------------------------------------------------------------------------------- /src/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/typescript.js -------------------------------------------------------------------------------- /src/update-process-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/update-process-env.js -------------------------------------------------------------------------------- /src/uri-handler-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/uri-handler-registry.js -------------------------------------------------------------------------------- /src/view-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/view-registry.js -------------------------------------------------------------------------------- /src/window-event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/window-event-handler.js -------------------------------------------------------------------------------- /src/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/window.js -------------------------------------------------------------------------------- /src/workspace-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/workspace-center.js -------------------------------------------------------------------------------- /src/workspace-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/workspace-element.js -------------------------------------------------------------------------------- /src/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/src/workspace.js -------------------------------------------------------------------------------- /static/atom-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/README.md -------------------------------------------------------------------------------- /static/atom-ui/_index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/_index.less -------------------------------------------------------------------------------- /static/atom-ui/styles/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/badges.less -------------------------------------------------------------------------------- /static/atom-ui/styles/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/button-groups.less -------------------------------------------------------------------------------- /static/atom-ui/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/buttons.less -------------------------------------------------------------------------------- /static/atom-ui/styles/git-status.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/git-status.less -------------------------------------------------------------------------------- /static/atom-ui/styles/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/icons.less -------------------------------------------------------------------------------- /static/atom-ui/styles/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/inputs.less -------------------------------------------------------------------------------- /static/atom-ui/styles/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/layout.less -------------------------------------------------------------------------------- /static/atom-ui/styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/lists.less -------------------------------------------------------------------------------- /static/atom-ui/styles/loading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/loading.less -------------------------------------------------------------------------------- /static/atom-ui/styles/messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/messages.less -------------------------------------------------------------------------------- /static/atom-ui/styles/mixins/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/mixins/mixins.less -------------------------------------------------------------------------------- /static/atom-ui/styles/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/modals.less -------------------------------------------------------------------------------- /static/atom-ui/styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/panels.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/README.md -------------------------------------------------------------------------------- /static/atom-ui/styles/private/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/alerts.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/close.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/code.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/forms.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/links.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/links.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/navs.less -------------------------------------------------------------------------------- /static/atom-ui/styles/private/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/private/tables.less -------------------------------------------------------------------------------- /static/atom-ui/styles/select-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/select-list.less -------------------------------------------------------------------------------- /static/atom-ui/styles/site-colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/site-colors.less -------------------------------------------------------------------------------- /static/atom-ui/styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/text.less -------------------------------------------------------------------------------- /static/atom-ui/styles/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom-ui/styles/tooltip.less -------------------------------------------------------------------------------- /static/atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/atom.less -------------------------------------------------------------------------------- /static/babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/babelrc.json -------------------------------------------------------------------------------- /static/core-ui/_index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/_index.less -------------------------------------------------------------------------------- /static/core-ui/cursors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/cursors.less -------------------------------------------------------------------------------- /static/core-ui/docks.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/docks.less -------------------------------------------------------------------------------- /static/core-ui/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/panels.less -------------------------------------------------------------------------------- /static/core-ui/panes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/panes.less -------------------------------------------------------------------------------- /static/core-ui/syntax.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/syntax.less -------------------------------------------------------------------------------- /static/core-ui/text-editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/text-editor.less -------------------------------------------------------------------------------- /static/core-ui/title-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/title-bar.less -------------------------------------------------------------------------------- /static/core-ui/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/utils.less -------------------------------------------------------------------------------- /static/core-ui/workspace-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/core-ui/workspace-view.less -------------------------------------------------------------------------------- /static/icons/atomicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/icons/atomicons.woff -------------------------------------------------------------------------------- /static/icons/octicons-2.1.2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/icons/octicons-2.1.2.woff -------------------------------------------------------------------------------- /static/icons/octicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/icons/octicons.less -------------------------------------------------------------------------------- /static/icons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/icons/octicons.woff -------------------------------------------------------------------------------- /static/images/octocat-spinner-128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/images/octocat-spinner-128.gif -------------------------------------------------------------------------------- /static/images/transparent-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/images/transparent-background.gif -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/index.html -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/index.js -------------------------------------------------------------------------------- /static/jasmine.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/jasmine.less -------------------------------------------------------------------------------- /static/linux.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/linux.less -------------------------------------------------------------------------------- /static/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/normalize.less -------------------------------------------------------------------------------- /static/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/scaffolding.less -------------------------------------------------------------------------------- /static/variables/octicon-mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/variables/octicon-mixins.less -------------------------------------------------------------------------------- /static/variables/octicon-utf-codes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/variables/octicon-utf-codes.less -------------------------------------------------------------------------------- /static/variables/syntax-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/variables/syntax-variables.less -------------------------------------------------------------------------------- /static/variables/ui-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/static/variables/ui-variables.less -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /vendor/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/vendor/jasmine-jquery.js -------------------------------------------------------------------------------- /vendor/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshay-Vs/atom/HEAD/vendor/jasmine.js --------------------------------------------------------------------------------