├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── package.json ├── scripts ├── build.js ├── config.js ├── patches │ └── src │ │ ├── atom-environment.coffee.patch │ │ └── compile-cache.js.patch ├── release.js ├── standalone-atom.js ├── testpage.html └── verify.js └── shims ├── clipboard.js ├── electron ├── index.js └── package.json ├── git-utils ├── index.js └── package.json ├── keyboard-layout ├── index.js └── package.json ├── marker-index ├── helpers.js ├── index.js ├── iterator.js ├── node.js └── point-helpers.js ├── module.js ├── nslog ├── index.js └── package.json ├── oniguruma ├── index.js └── package.json ├── pathwatcher ├── directory.coffee ├── directory.js ├── file.coffee ├── file.js ├── index.js └── package.json ├── remote.js ├── screen.js ├── scrollbar-style ├── index.js └── package.json └── shell.js /.gitignore: -------------------------------------------------------------------------------- 1 | /config.local.json 2 | node_modules 3 | /out 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ATOM_REVISION": "f7d3f0210bf6ff1b4193d8a8b8a54c199b561bc2" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/config.js -------------------------------------------------------------------------------- /scripts/patches/src/atom-environment.coffee.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/patches/src/atom-environment.coffee.patch -------------------------------------------------------------------------------- /scripts/patches/src/compile-cache.js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/patches/src/compile-cache.js.patch -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/release.js -------------------------------------------------------------------------------- /scripts/standalone-atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/standalone-atom.js -------------------------------------------------------------------------------- /scripts/testpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/testpage.html -------------------------------------------------------------------------------- /scripts/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/scripts/verify.js -------------------------------------------------------------------------------- /shims/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/clipboard.js -------------------------------------------------------------------------------- /shims/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/electron/index.js -------------------------------------------------------------------------------- /shims/electron/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "electron" 3 | } 4 | -------------------------------------------------------------------------------- /shims/git-utils/index.js: -------------------------------------------------------------------------------- 1 | // TODO: Add fake implementations, as necessary. 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /shims/git-utils/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "git-utils" 3 | } 4 | -------------------------------------------------------------------------------- /shims/keyboard-layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/keyboard-layout/index.js -------------------------------------------------------------------------------- /shims/keyboard-layout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "keyboard-layout" 3 | } 4 | -------------------------------------------------------------------------------- /shims/marker-index/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/marker-index/helpers.js -------------------------------------------------------------------------------- /shims/marker-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/marker-index/index.js -------------------------------------------------------------------------------- /shims/marker-index/iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/marker-index/iterator.js -------------------------------------------------------------------------------- /shims/marker-index/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/marker-index/node.js -------------------------------------------------------------------------------- /shims/marker-index/point-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/marker-index/point-helpers.js -------------------------------------------------------------------------------- /shims/module.js: -------------------------------------------------------------------------------- 1 | exports.globalPaths = []; 2 | -------------------------------------------------------------------------------- /shims/nslog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/nslog/index.js -------------------------------------------------------------------------------- /shims/nslog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nslog" 3 | } 4 | -------------------------------------------------------------------------------- /shims/oniguruma/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/oniguruma/index.js -------------------------------------------------------------------------------- /shims/oniguruma/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "oniguruma" 3 | } 4 | -------------------------------------------------------------------------------- /shims/pathwatcher/directory.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/pathwatcher/directory.coffee -------------------------------------------------------------------------------- /shims/pathwatcher/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/pathwatcher/directory.js -------------------------------------------------------------------------------- /shims/pathwatcher/file.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/pathwatcher/file.coffee -------------------------------------------------------------------------------- /shims/pathwatcher/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/pathwatcher/file.js -------------------------------------------------------------------------------- /shims/pathwatcher/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/pathwatcher/index.js -------------------------------------------------------------------------------- /shims/pathwatcher/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pathwatcher" 3 | } 4 | -------------------------------------------------------------------------------- /shims/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/remote.js -------------------------------------------------------------------------------- /shims/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/screen.js -------------------------------------------------------------------------------- /shims/scrollbar-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/atom-in-orbit/HEAD/shims/scrollbar-style/index.js -------------------------------------------------------------------------------- /shims/scrollbar-style/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "scrollbar-style" 3 | } 4 | -------------------------------------------------------------------------------- /shims/shell.js: -------------------------------------------------------------------------------- 1 | exports.beep = function() { 2 | // TODO: beep(). 3 | }; 4 | --------------------------------------------------------------------------------