├── .devcontainer ├── README.md ├── cache │ ├── before-cache.sh │ ├── build-cache-image.sh │ ├── cache-diff.sh │ ├── cache.Dockerfile │ └── restore-diff.sh ├── devcontainer.json └── prepare.sh ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .git-blame-ignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── calendar.yml ├── classifier.json ├── commands.json ├── commands.yml ├── endgame │ └── insiders.yml ├── insiders.yml ├── pull_request_template.md ├── similarity.yml ├── subscribers.json └── workflows │ ├── author-verified.yml │ ├── azure-static-web-apps.yml │ ├── bad-tag.yml │ ├── basic.yml │ ├── check-clean-git-state.sh │ ├── ci.yml │ ├── codeql.yml │ ├── deep-classifier-assign-monitor.yml │ ├── deep-classifier-runner.yml │ ├── deep-classifier-scraper.yml │ ├── deep-classifier-unassign-monitor.yml │ ├── devcontainer-cache.yml │ ├── english-please.yml │ ├── feature-request.yml │ ├── latest-release-monitor.yml │ ├── locker.yml │ ├── monaco-editor.yml │ ├── needs-more-info-closer.yml │ ├── no-yarn-lock-changes.yml │ ├── on-comment.yml │ ├── on-label.yml │ ├── on-open.yml │ ├── release-pipeline-labeler.yml │ └── test-plan-item-validator.yml ├── .gitignore ├── .lsifrc.json ├── .mailmap ├── .mention-bot ├── .vscode ├── cglicenses.schema.json ├── cgmanifest.schema.json ├── extensions.json ├── launch.json ├── notebooks │ ├── api.github-issues │ ├── endgame.github-issues │ ├── grooming-delta.github-issues │ ├── inbox.github-issues │ ├── my-endgame.github-issues │ ├── my-work.github-issues │ ├── papercuts.github-issues │ ├── verification.github-issues │ └── vscode-dev.github-issues ├── searches │ └── ts36031.code-search ├── settings.json ├── shared.code-snippets └── tasks.json ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── babel.config.js ├── cglicenses.json ├── cgmanifest.json ├── gulpfile.js ├── ios ├── .xcode.env ├── Podfile ├── Podfile.lock ├── _xcode.env ├── mote.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── mote.xcscheme ├── mote.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── mote │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── moteTests │ ├── Info.plist │ └── moteTests.m ├── metro.config.js ├── package.json ├── product.json ├── remote ├── .yarnrc ├── package-lock.json ├── package.json ├── web │ ├── package-lock.json │ ├── package.json │ └── yarn.lock └── yarn.lock ├── resources ├── completions │ ├── bash │ │ └── code │ └── zsh │ │ └── _code ├── darwin │ ├── bat.icns │ ├── bin │ │ └── code.sh │ ├── bower.icns │ ├── c.icns │ ├── config.icns │ ├── cpp.icns │ ├── csharp.icns │ ├── css.icns │ ├── default.icns │ ├── go.icns │ ├── html.icns │ ├── jade.icns │ ├── java.icns │ ├── javascript.icns │ ├── json.icns │ ├── less.icns │ ├── markdown.icns │ ├── mote.icns │ ├── php.icns │ ├── powershell.icns │ ├── python.icns │ ├── react.icns │ ├── ruby.icns │ ├── sass.icns │ ├── shell.icns │ ├── sql.icns │ ├── typescript.icns │ ├── vue.icns │ ├── xml.icns │ └── yaml.icns ├── linux │ ├── bin │ │ └── code.sh │ ├── code-url-handler.desktop │ ├── code-workspace.xml │ ├── code.appdata.xml │ ├── code.desktop │ ├── code.png │ ├── debian │ │ ├── control.template │ │ ├── postinst.template │ │ ├── postrm.template │ │ └── prerm.template │ ├── rpm │ │ ├── code.spec.template │ │ └── code.xpm │ └── snap │ │ ├── electron-launch │ │ └── snapcraft.yaml ├── server │ ├── bin-dev │ │ ├── helpers │ │ │ ├── browser.cmd │ │ │ └── browser.sh │ │ └── remote-cli │ │ │ ├── code.cmd │ │ │ └── code.sh │ ├── bin │ │ ├── code-server-darwin.sh │ │ ├── code-server-linux.sh │ │ ├── code-server.cmd │ │ ├── helpers │ │ │ ├── browser-darwin.sh │ │ │ ├── browser-linux.sh │ │ │ └── browser.cmd │ │ ├── remote-cli │ │ │ ├── code-darwin.sh │ │ │ ├── code-linux.sh │ │ │ └── code.cmd │ │ ├── server-old.cmd │ │ └── server-old.sh │ ├── favicon.ico │ ├── image │ │ └── onboarding │ │ │ ├── checked.svg │ │ │ ├── team-features-illustration.png │ │ │ ├── unchecked.svg │ │ │ └── use-case-note.png │ ├── manifest.json │ ├── mote-192.png │ └── mote-512.png └── win32 │ ├── VisualElementsManifest.xml │ ├── bin │ ├── code.cmd │ └── code.sh │ ├── bower.ico │ ├── c.ico │ ├── code.ico │ ├── code_150x150.png │ ├── code_70x70.png │ ├── config.ico │ ├── cpp.ico │ ├── csharp.ico │ ├── css.ico │ ├── default.ico │ ├── go.ico │ ├── html.ico │ ├── inno-big-100.bmp │ ├── inno-big-125.bmp │ ├── inno-big-150.bmp │ ├── inno-big-175.bmp │ ├── inno-big-200.bmp │ ├── inno-big-225.bmp │ ├── inno-big-250.bmp │ ├── inno-small-100.bmp │ ├── inno-small-125.bmp │ ├── inno-small-150.bmp │ ├── inno-small-175.bmp │ ├── inno-small-200.bmp │ ├── inno-small-225.bmp │ ├── inno-small-250.bmp │ ├── jade.ico │ ├── java.ico │ ├── javascript.ico │ ├── json.ico │ ├── less.ico │ ├── markdown.ico │ ├── php.ico │ ├── powershell.ico │ ├── python.ico │ ├── react.ico │ ├── ruby.ico │ ├── sass.ico │ ├── shell.ico │ ├── sql.ico │ ├── typescript.ico │ ├── vue.ico │ ├── xml.ico │ └── yaml.ico ├── scripts ├── code-cli.bat ├── code-cli.sh ├── code-server.bat ├── code-server.js ├── code-server.sh ├── code-web.bat ├── code.bat ├── generate-definitelytyped.sh ├── mote-web.js ├── mote-web.sh ├── mote.sh ├── node-electron.bat ├── node-electron.sh ├── npm.bat ├── npm.sh ├── test-documentation.bat ├── test-documentation.sh ├── test-integration.bat ├── test-integration.sh ├── test-remote-integration.bat ├── test-remote-integration.sh ├── test-web-integration.bat ├── test-web-integration.sh ├── test.bat ├── test.sh ├── update-xterm.js └── update-xterm.ps1 ├── src ├── bootstrap-amd.js ├── bootstrap-fork.js ├── bootstrap-node.js ├── bootstrap-window.js ├── bootstrap.js ├── buildfile.js ├── cli.js ├── index.js ├── main.js ├── mote │ ├── app │ │ ├── browser │ │ │ └── workbench │ │ │ │ ├── callback.html │ │ │ │ ├── workbench-dev.html │ │ │ │ ├── workbench.html │ │ │ │ └── workbench.ts │ │ ├── electron-browser │ │ │ └── sharedProcess │ │ │ │ ├── sharedProcess.html │ │ │ │ ├── sharedProcess.js │ │ │ │ └── sharedProcessMain.ts │ │ ├── electron-main │ │ │ ├── app.ts │ │ │ └── main.ts │ │ ├── electron-sandbox │ │ │ └── workbench │ │ │ │ ├── index.css │ │ │ │ ├── workbench.html │ │ │ │ └── workbench.js │ │ ├── node │ │ │ ├── cli.ts │ │ │ └── cliProcessMain.ts │ │ └── react-native │ │ │ └── app.tsx │ ├── base │ │ ├── browser │ │ │ ├── broadcast.ts │ │ │ ├── browser.ts │ │ │ ├── canIUse.ts │ │ │ ├── contextmenu.ts │ │ │ ├── defaultWorkerFactory.ts │ │ │ ├── dnd.ts │ │ │ ├── dom.ts │ │ │ ├── dompurify │ │ │ │ ├── cgmanifest.json │ │ │ │ ├── dompurify.d.ts │ │ │ │ ├── dompurify.js │ │ │ │ └── dompurify.license.txt │ │ │ ├── event.ts │ │ │ ├── fastDomNode.ts │ │ │ ├── formattedTextRenderer.ts │ │ │ ├── globalPointerMoveMonitor.ts │ │ │ ├── hash.ts │ │ │ ├── iframe.ts │ │ │ ├── indexedDB.ts │ │ │ ├── jsx │ │ │ │ ├── createElement.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── jsx.ts │ │ │ │ └── style.ts │ │ │ ├── keyboardEvent.ts │ │ │ ├── markdownRenderer.ts │ │ │ ├── mouseEvent.ts │ │ │ ├── performance.ts │ │ │ ├── prism │ │ │ │ ├── component │ │ │ │ │ ├── prismCLike.ts │ │ │ │ │ ├── prismJavaScript.ts │ │ │ │ │ └── prismPython.ts │ │ │ │ ├── prism.all.ts │ │ │ │ ├── prism.d.ts │ │ │ │ └── prism.ts │ │ │ ├── touch.ts │ │ │ └── ui │ │ │ │ ├── actionbar │ │ │ │ ├── actionViewItems.ts │ │ │ │ ├── actionbar.css │ │ │ │ └── actionbar.ts │ │ │ │ ├── aria │ │ │ │ ├── aria.css │ │ │ │ └── aria.ts │ │ │ │ ├── button │ │ │ │ └── button.ts │ │ │ │ ├── centered │ │ │ │ └── centeredViewLayout.ts │ │ │ │ ├── checkbox │ │ │ │ └── checkbox.ts │ │ │ │ ├── codicons │ │ │ │ ├── codicon │ │ │ │ │ ├── codicon-modifiers.css │ │ │ │ │ ├── codicon.css │ │ │ │ │ └── codicon.ttf │ │ │ │ └── codiconStyles.ts │ │ │ │ ├── contextview │ │ │ │ ├── contextview.css │ │ │ │ └── contextview.ts │ │ │ │ ├── countBadge │ │ │ │ ├── countBadge.css │ │ │ │ └── countBadge.ts │ │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.ts │ │ │ │ ├── dropdown │ │ │ │ ├── dropdown.css │ │ │ │ ├── dropdown.ts │ │ │ │ └── dropdownActionViewItem.ts │ │ │ │ ├── findinput │ │ │ │ ├── findInput.css │ │ │ │ ├── findInput.ts │ │ │ │ ├── findInputToggles.ts │ │ │ │ └── replaceInput.ts │ │ │ │ ├── fonts.ts │ │ │ │ ├── grid │ │ │ │ ├── grid.ts │ │ │ │ ├── gridview.css │ │ │ │ └── gridview.ts │ │ │ │ ├── highlightedlabel │ │ │ │ └── highlightedLabel.ts │ │ │ │ ├── hover │ │ │ │ ├── hover.css │ │ │ │ └── hoverWidget.ts │ │ │ │ ├── icon │ │ │ │ ├── svgdata.ts │ │ │ │ └── svgicon.ts │ │ │ │ ├── iconLabel │ │ │ │ ├── iconHoverDelegate.ts │ │ │ │ ├── iconLabel.ts │ │ │ │ ├── iconLabelHover.ts │ │ │ │ ├── iconLabels.ts │ │ │ │ ├── iconlabel.css │ │ │ │ └── simpleIconLabel.ts │ │ │ │ ├── inputbox │ │ │ │ ├── inputBox.css │ │ │ │ └── inputBox.ts │ │ │ │ ├── item │ │ │ │ └── itemContainer.ts │ │ │ │ ├── keybindingLabel │ │ │ │ ├── keybindingLabel.css │ │ │ │ └── keybindingLabel.ts │ │ │ │ ├── list │ │ │ │ ├── list.css │ │ │ │ ├── list.ts │ │ │ │ ├── listPaging.ts │ │ │ │ ├── listView.ts │ │ │ │ ├── listWidget.ts │ │ │ │ ├── rangeMap.ts │ │ │ │ ├── rowCache.ts │ │ │ │ └── splice.ts │ │ │ │ ├── menu │ │ │ │ ├── menu.ts │ │ │ │ ├── menubar.css │ │ │ │ ├── menubar.ts │ │ │ │ ├── quickMenu.ts │ │ │ │ └── richmenu.ts │ │ │ │ ├── mouseCursor │ │ │ │ ├── mouseCursor.css │ │ │ │ └── mouseCursor.ts │ │ │ │ ├── progressbar │ │ │ │ ├── progressbar.css │ │ │ │ └── progressbar.ts │ │ │ │ ├── sash │ │ │ │ ├── sash.css │ │ │ │ └── sash.ts │ │ │ │ ├── scrollbar │ │ │ │ ├── abstractScrollbar.ts │ │ │ │ ├── horizontalScrollbar.ts │ │ │ │ ├── media │ │ │ │ │ └── scrollbars.css │ │ │ │ ├── scrollableElement.ts │ │ │ │ ├── scrollableElementOptions.ts │ │ │ │ ├── scrollbarArrow.ts │ │ │ │ ├── scrollbarState.ts │ │ │ │ ├── scrollbarVisibilityController.ts │ │ │ │ └── verticalScrollbar.ts │ │ │ │ ├── selectBox │ │ │ │ ├── selectBox.css │ │ │ │ ├── selectBox.ts │ │ │ │ ├── selectBoxCustom.css │ │ │ │ ├── selectBoxCustom.ts │ │ │ │ └── selectBoxNative.ts │ │ │ │ ├── splitview │ │ │ │ ├── paneview.css │ │ │ │ ├── paneview.ts │ │ │ │ ├── splitview.css │ │ │ │ └── splitview.ts │ │ │ │ ├── tab │ │ │ │ └── tabsWidget.ts │ │ │ │ ├── table │ │ │ │ ├── table.css │ │ │ │ ├── table.ts │ │ │ │ └── tableWidget.ts │ │ │ │ ├── toggle │ │ │ │ ├── toggle.css │ │ │ │ └── toggle.ts │ │ │ │ ├── toolbar │ │ │ │ ├── toolbar.css │ │ │ │ └── toolbar.ts │ │ │ │ ├── tree │ │ │ │ ├── abstractTree.ts │ │ │ │ ├── asyncDataTree.ts │ │ │ │ ├── compressedObjectTreeModel.ts │ │ │ │ ├── dataTree.ts │ │ │ │ ├── indexTreeModel.ts │ │ │ │ ├── media │ │ │ │ │ ├── paneviewlet.css │ │ │ │ │ └── tree.css │ │ │ │ ├── objectTree.ts │ │ │ │ ├── objectTreeModel.ts │ │ │ │ └── tree.ts │ │ │ │ └── widget.ts │ │ ├── common │ │ │ ├── actions.ts │ │ │ ├── amd.ts │ │ │ ├── arrays.ts │ │ │ ├── assert.ts │ │ │ ├── async.ts │ │ │ ├── buffer.ts │ │ │ ├── cache.ts │ │ │ ├── cancellation.ts │ │ │ ├── charCode.ts │ │ │ ├── codicons.ts │ │ │ ├── collections.ts │ │ │ ├── color.ts │ │ │ ├── comparers.ts │ │ │ ├── console.ts │ │ │ ├── date.ts │ │ │ ├── decorators.ts │ │ │ ├── diff │ │ │ │ ├── diff.ts │ │ │ │ └── diffChange.ts │ │ │ ├── errorMessage.ts │ │ │ ├── errors.ts │ │ │ ├── event.ts │ │ │ ├── extpath.ts │ │ │ ├── filters.ts │ │ │ ├── functional.ts │ │ │ ├── fuzzyScorer.ts │ │ │ ├── glob.ts │ │ │ ├── hash.ts │ │ │ ├── history.ts │ │ │ ├── htmlContent.ts │ │ │ ├── i18n.ts │ │ │ ├── i18n │ │ │ │ └── zh-CN.ts │ │ │ ├── iconLabels.ts │ │ │ ├── idGenerator.ts │ │ │ ├── ime.ts │ │ │ ├── iterator.ts │ │ │ ├── json.ts │ │ │ ├── jsonEdit.ts │ │ │ ├── jsonErrorMessages.ts │ │ │ ├── jsonFormatter.ts │ │ │ ├── jsonSchema.ts │ │ │ ├── keyCodes.ts │ │ │ ├── keybindingLabels.ts │ │ │ ├── keybindings.ts │ │ │ ├── labels.ts │ │ │ ├── lazy.ts │ │ │ ├── lifecycle.ts │ │ │ ├── linkedList.ts │ │ │ ├── linkedText.ts │ │ │ ├── lodash.ts │ │ │ ├── map.ts │ │ │ ├── marked │ │ │ │ ├── cgmanifest.json │ │ │ │ ├── marked.d.ts │ │ │ │ ├── marked.js │ │ │ │ └── marked.license.txt │ │ │ ├── marshalling.ts │ │ │ ├── marshallingIds.ts │ │ │ ├── mime.ts │ │ │ ├── navigator.ts │ │ │ ├── network.ts │ │ │ ├── normalization.ts │ │ │ ├── numbers.ts │ │ │ ├── objects.ts │ │ │ ├── observable.ts │ │ │ ├── observableImpl │ │ │ │ ├── autorun.ts │ │ │ │ ├── base.ts │ │ │ │ ├── derived.ts │ │ │ │ ├── logging.ts │ │ │ │ └── utils.ts │ │ │ ├── observableValue.ts │ │ │ ├── path.ts │ │ │ ├── performance.d.ts │ │ │ ├── performance.js │ │ │ ├── platform.ts │ │ │ ├── ports.ts │ │ │ ├── process.ts │ │ │ ├── processes.ts │ │ │ ├── product.ts │ │ │ ├── range.ts │ │ │ ├── resources.ts │ │ │ ├── scrollable.ts │ │ │ ├── semver │ │ │ │ ├── cgmanifest.json │ │ │ │ ├── semver.d.ts │ │ │ │ └── semver.js │ │ │ ├── sequence.ts │ │ │ ├── severity.ts │ │ │ ├── skipList.ts │ │ │ ├── stopwatch.ts │ │ │ ├── stream.ts │ │ │ ├── strings.ts │ │ │ ├── stripComments.d.ts │ │ │ ├── stripComments.js │ │ │ ├── styler.ts │ │ │ ├── symbols.ts │ │ │ ├── ternarySearchTree.ts │ │ │ ├── themables.ts │ │ │ ├── themes.ts │ │ │ ├── types.ts │ │ │ ├── uint.ts │ │ │ ├── uri.ts │ │ │ ├── uriIpc.ts │ │ │ ├── uuid.ts │ │ │ └── worker │ │ │ │ └── simpleWorker.ts │ │ ├── node │ │ │ ├── cpuUsage.sh │ │ │ ├── crypto.ts │ │ │ ├── extpath.ts │ │ │ ├── id.ts │ │ │ ├── languagePacks.d.ts │ │ │ ├── languagePacks.js │ │ │ ├── macAddress.ts │ │ │ ├── pfs.ts │ │ │ ├── ports.ts │ │ │ ├── powershell.ts │ │ │ ├── processes.ts │ │ │ ├── ps.sh │ │ │ ├── ps.ts │ │ │ ├── shell.ts │ │ │ ├── terminalEncoding.ts │ │ │ ├── terminateProcess.sh │ │ │ └── zip.ts │ │ ├── parts │ │ │ ├── ipc │ │ │ │ ├── browser │ │ │ │ │ └── ipc.mp.ts │ │ │ │ ├── common │ │ │ │ │ ├── ipc.electron.ts │ │ │ │ │ ├── ipc.mp.ts │ │ │ │ │ ├── ipc.net.ts │ │ │ │ │ └── ipc.ts │ │ │ │ ├── electron-browser │ │ │ │ │ └── ipc.mp.ts │ │ │ │ ├── electron-main │ │ │ │ │ ├── ipc.electron.ts │ │ │ │ │ ├── ipc.mp.ts │ │ │ │ │ └── ipcMain.ts │ │ │ │ ├── electron-sandbox │ │ │ │ │ ├── ipc.electron.ts │ │ │ │ │ └── ipc.mp.ts │ │ │ │ ├── node │ │ │ │ │ ├── ipc.cp.ts │ │ │ │ │ └── ipc.net.ts │ │ │ │ └── test │ │ │ │ │ ├── browser │ │ │ │ │ └── ipc.mp.test.ts │ │ │ │ │ ├── common │ │ │ │ │ └── ipc.test.ts │ │ │ │ │ ├── electron-sandbox │ │ │ │ │ └── ipc.mp.test.ts │ │ │ │ │ └── node │ │ │ │ │ ├── ipc.cp.integrationTest.ts │ │ │ │ │ ├── ipc.net.test.ts │ │ │ │ │ ├── testApp.ts │ │ │ │ │ └── testService.ts │ │ │ ├── quickinput │ │ │ │ ├── browser │ │ │ │ │ ├── media │ │ │ │ │ │ └── quickInput.css │ │ │ │ │ ├── quickInput.ts │ │ │ │ │ ├── quickInputBox.ts │ │ │ │ │ ├── quickInputList.ts │ │ │ │ │ └── quickInputUtils.ts │ │ │ │ ├── common │ │ │ │ │ └── quickInput.ts │ │ │ │ └── test │ │ │ │ │ └── browser │ │ │ │ │ └── quickinput.test.ts │ │ │ ├── request │ │ │ │ └── common │ │ │ │ │ └── request.ts │ │ │ ├── sandbox │ │ │ │ ├── common │ │ │ │ │ ├── electronTypes.ts │ │ │ │ │ └── sandboxTypes.ts │ │ │ │ ├── electron-browser │ │ │ │ │ └── preload.js │ │ │ │ ├── electron-main │ │ │ │ │ └── electronTypes.ts │ │ │ │ ├── electron-sandbox │ │ │ │ │ ├── electronTypes.ts │ │ │ │ │ └── globals.ts │ │ │ │ ├── node │ │ │ │ │ └── electronTypes.ts │ │ │ │ └── test │ │ │ │ │ └── electron-sandbox │ │ │ │ │ └── globals.test.ts │ │ │ └── storage │ │ │ │ ├── common │ │ │ │ └── storage.ts │ │ │ │ ├── node │ │ │ │ └── storage.ts │ │ │ │ └── test │ │ │ │ └── node │ │ │ │ └── storage.test.ts │ │ ├── test │ │ │ └── browser │ │ │ │ └── prism │ │ │ │ ├── prism.greedy.test.ts │ │ │ │ ├── prism.test.ts │ │ │ │ ├── prismHelper.ts │ │ │ │ └── prismJavascript.test.ts │ │ └── ui │ │ │ ├── icon │ │ │ └── icon.ts │ │ │ └── list │ │ │ └── listView.ts │ ├── css.build.ts │ ├── css.ts │ ├── editor │ │ ├── browser │ │ │ ├── command │ │ │ │ ├── coreCommands.ts │ │ │ │ └── navigationCommands.ts │ │ │ ├── config │ │ │ │ ├── charWidthReader.ts │ │ │ │ ├── domFontInfo.ts │ │ │ │ ├── editorConfiguration.ts │ │ │ │ ├── elementSizeObserver.ts │ │ │ │ ├── fontMeasurements.ts │ │ │ │ └── migrateOptions.ts │ │ │ ├── controller │ │ │ │ ├── editableHandler.ts │ │ │ │ ├── editableInput.ts │ │ │ │ ├── editableState.ts │ │ │ │ ├── mouseHandler.ts │ │ │ │ ├── mouseTarget.ts │ │ │ │ ├── pointerHandler.ts │ │ │ │ ├── textAreaHandler.css │ │ │ │ ├── textAreaHandler.ts │ │ │ │ ├── textAreaInput.ts │ │ │ │ └── textAreaState.ts │ │ │ ├── coreCommands.ts │ │ │ ├── editorBrowser.ts │ │ │ ├── editorDom.ts │ │ │ ├── editorExtensions.ts │ │ │ ├── editorView.ts │ │ │ ├── moteEditorView.ts │ │ │ ├── services │ │ │ │ ├── abstractMoteEditorService.ts │ │ │ │ ├── moteEditorService.ts │ │ │ │ └── openerService.ts │ │ │ ├── textEditorView.ts │ │ │ ├── textRenderer.ts │ │ │ ├── view │ │ │ │ ├── domLineBreaksComputerFactory.ts │ │ │ │ ├── renderingContext.ts │ │ │ │ ├── viewContext.ts │ │ │ │ ├── viewController.ts │ │ │ │ ├── viewLayer.ts │ │ │ │ ├── viewPart.ts │ │ │ │ └── viewUserInputEvents.ts │ │ │ ├── viewLineExtensions.ts │ │ │ ├── viewParts │ │ │ │ ├── editorScrollbar │ │ │ │ │ └── editorScrollbar.ts │ │ │ │ ├── lines │ │ │ │ │ ├── rangeUtil.ts │ │ │ │ │ ├── viewLine.ts │ │ │ │ │ ├── viewLineRenderer.ts │ │ │ │ │ ├── viewLines.css │ │ │ │ │ └── viewLines.ts │ │ │ │ ├── overlayWidgets │ │ │ │ │ └── overlayWidgets.ts │ │ │ │ ├── templatePicker │ │ │ │ │ └── templatePicker.ts │ │ │ │ └── viewCursors │ │ │ │ │ ├── viewCursor.ts │ │ │ │ │ ├── viewCursors.css │ │ │ │ │ └── viewCursors.ts │ │ │ └── widget │ │ │ │ ├── editorWidget.ts │ │ │ │ ├── media │ │ │ │ └── editor.css │ │ │ │ ├── moteEditorWidget.ts │ │ │ │ └── textEditorWidget.ts │ │ ├── common │ │ │ ├── annotation.ts │ │ │ ├── blockTypes.ts │ │ │ ├── commands │ │ │ │ └── replaceCommand.ts │ │ │ ├── config │ │ │ │ ├── editorConfiguration.ts │ │ │ │ ├── editorOptions.ts │ │ │ │ ├── editorZoom.ts │ │ │ │ └── fontInfo.ts │ │ │ ├── core │ │ │ │ ├── characterClassifier.ts │ │ │ │ ├── cursorColumns.ts │ │ │ │ ├── dimension.ts │ │ │ │ ├── editOperation.ts │ │ │ │ ├── editorColorRegistry.ts │ │ │ │ ├── editorRange.ts │ │ │ │ ├── editorSelection.ts │ │ │ │ ├── eolCounter.ts │ │ │ │ ├── position.ts │ │ │ │ ├── rangeUtils.ts │ │ │ │ ├── segment.ts │ │ │ │ ├── selectionUtils.ts │ │ │ │ ├── stringBuilder.ts │ │ │ │ ├── textChange.ts │ │ │ │ ├── transaction.ts │ │ │ │ └── wordCharacterClassifier.ts │ │ │ ├── cursor │ │ │ │ ├── cursor.ts │ │ │ │ ├── cursorCollection.ts │ │ │ │ ├── cursorColumnSelection.ts │ │ │ │ ├── cursorContext.ts │ │ │ │ ├── cursorDeleteOperations.ts │ │ │ │ ├── cursorMoveCommands.ts │ │ │ │ ├── cursorMoveOperations.ts │ │ │ │ ├── cursorTypeOperations.ts │ │ │ │ ├── cursorWordOperations.ts │ │ │ │ └── cursorsController.ts │ │ │ ├── cursorCommon.ts │ │ │ ├── cursorEvents.ts │ │ │ ├── diffMatchPatch.ts │ │ │ ├── editorAction.ts │ │ │ ├── editorCommon.ts │ │ │ ├── editorContextKeys.ts │ │ │ ├── editorState.ts │ │ │ ├── editorTheme.ts │ │ │ ├── encodedTokenAttributes.ts │ │ │ ├── htmlElementUtils.ts │ │ │ ├── languages.ts │ │ │ ├── languages │ │ │ │ ├── nullTokenize.ts │ │ │ │ └── textToHtmlTokenizer.ts │ │ │ ├── markdown.ts │ │ │ ├── model.ts │ │ │ ├── model │ │ │ │ ├── editStack.ts │ │ │ │ ├── pieceTreeTextBuffer.ts │ │ │ │ ├── pieceTreeTextBuffer │ │ │ │ │ ├── pieceTreeBase.ts │ │ │ │ │ ├── pieceTreeTextBuffer.ts │ │ │ │ │ ├── pieceTreeTextBufferBuilder.ts │ │ │ │ │ └── rbTreeBase.ts │ │ │ │ ├── prefixSumComputer.ts │ │ │ │ ├── storeBasedTextModel.ts │ │ │ │ ├── textBasedTextModel.ts │ │ │ │ ├── textBuffer.ts │ │ │ │ ├── textModel.ts │ │ │ │ ├── textModelPart.ts │ │ │ │ ├── textModelSearch.ts │ │ │ │ └── tokenizationTextModelPart.ts │ │ │ ├── modelLineProjectionData.ts │ │ │ ├── repository │ │ │ │ └── blockRepository.ts │ │ │ ├── segment.ts │ │ │ ├── segmentUtils.ts │ │ │ ├── services │ │ │ │ ├── model.ts │ │ │ │ ├── modelService.ts │ │ │ │ ├── resolverService.ts │ │ │ │ ├── textResourceConfiguration.ts │ │ │ │ └── textResourceConfigurationService.ts │ │ │ ├── textModelEvents.ts │ │ │ ├── textSerialize.ts │ │ │ ├── tokenizationRegistry.ts │ │ │ ├── tokenizationTextModelPart.ts │ │ │ ├── tokens │ │ │ │ └── lineTokens.ts │ │ │ ├── viewEventDispatcher.ts │ │ │ ├── viewEventHandler.ts │ │ │ ├── viewEvents.ts │ │ │ ├── viewLayout │ │ │ │ ├── linePart.ts │ │ │ │ ├── linesLayout.ts │ │ │ │ ├── viewLayout.ts │ │ │ │ └── viewLinesViewportData.ts │ │ │ ├── viewModel.ts │ │ │ ├── viewModel │ │ │ │ ├── modelLineProjection.ts │ │ │ │ ├── monospaceLineBreaksComputer.ts │ │ │ │ ├── viewModelImpl.ts │ │ │ │ └── viewModelLines.ts │ │ │ └── viewModelEventDispatcher.ts │ │ ├── contrib │ │ │ ├── inlineCompletions │ │ │ │ └── browser │ │ │ │ │ └── ghostText.contributiion.ts │ │ │ ├── markdownRenderer │ │ │ │ └── browser │ │ │ │ │ └── markdownRenderer.ts │ │ │ ├── quickAccess │ │ │ │ └── browser │ │ │ │ │ ├── commandsQuickAccess.ts │ │ │ │ │ ├── editorNavigationQuickAccess.ts │ │ │ │ │ ├── gotoLineQuickAccess.ts │ │ │ │ │ └── gotoSymbolQuickAccess.ts │ │ │ ├── slash │ │ │ │ └── browser │ │ │ │ │ ├── menu.ts │ │ │ │ │ ├── slash.contribution.ts │ │ │ │ │ └── slash.ts │ │ │ ├── topbar │ │ │ │ └── browser │ │ │ │ │ ├── shareMenu.ts │ │ │ │ │ ├── topbarController.ts │ │ │ │ │ └── topbarWidget.ts │ │ │ └── viewBlock │ │ │ │ └── browser │ │ │ │ ├── baseBlock.ts │ │ │ │ ├── codeBlock.ts │ │ │ │ ├── imageBlock.ts │ │ │ │ ├── media │ │ │ │ └── prism.css │ │ │ │ └── viewBlocks.ts │ │ ├── editor.all.ts │ │ ├── editor.main.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── controller │ │ │ │ └── viewController.test.ts │ │ │ └── viewParts │ │ │ │ └── lines │ │ │ │ └── viewLineRenderer.test.ts │ │ │ └── common │ │ │ ├── core │ │ │ ├── lineTokens.test.ts │ │ │ ├── segment.test.ts │ │ │ └── textChange.test.ts │ │ │ ├── diffMatchPatch.test.ts │ │ │ ├── encodedTokenAttributes.test.ts │ │ │ └── segmentUtils.test.ts │ ├── loader.d.ts │ ├── loader.js │ ├── nls.build.ts │ ├── nls.mock.ts │ ├── nls.ts │ ├── platform │ │ ├── accessibility │ │ │ ├── browser │ │ │ │ └── accessibilityService.ts │ │ │ ├── common │ │ │ │ └── accessibility.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── testAccessibilityService.ts │ │ ├── action │ │ │ └── common │ │ │ │ ├── action.ts │ │ │ │ └── actionCommonCategories.ts │ │ ├── actions │ │ │ ├── browser │ │ │ │ ├── dropdownWithPrimaryActionViewItem.ts │ │ │ │ ├── menuEntryActionViewItem.css │ │ │ │ ├── menuEntryActionViewItem.ts │ │ │ │ └── toolbar.ts │ │ │ ├── common │ │ │ │ ├── actions.contribution.ts │ │ │ │ ├── actions.ts │ │ │ │ ├── menuResetAction.ts │ │ │ │ └── menuService.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── menuService.test.ts │ │ ├── clipboard │ │ │ ├── browser │ │ │ │ └── clipboardService.ts │ │ │ ├── common │ │ │ │ └── clipboardService.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── testClipboardService.ts │ │ ├── commands │ │ │ ├── common │ │ │ │ └── commands.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── commands.test.ts │ │ ├── configuration │ │ │ └── common │ │ │ │ ├── configuration.ts │ │ │ │ ├── configurationModels.ts │ │ │ │ ├── configurationRegistry.ts │ │ │ │ ├── configurationService.ts │ │ │ │ └── configurations.ts │ │ ├── contextkey │ │ │ ├── browser │ │ │ │ └── contextKeyService.ts │ │ │ ├── common │ │ │ │ ├── contextkey.ts │ │ │ │ └── contextkeys.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ └── contextkey.test.ts │ │ │ │ └── common │ │ │ │ └── contextkey.test.ts │ │ ├── contextview │ │ │ └── browser │ │ │ │ ├── contextMenuHandler.ts │ │ │ │ ├── contextMenuService.ts │ │ │ │ ├── contextView.ts │ │ │ │ ├── contextViewBasedService.ts │ │ │ │ ├── contextViewHelper.ts │ │ │ │ └── contextViewService.ts │ │ ├── credentials │ │ │ └── common │ │ │ │ └── credentials.ts │ │ ├── dialogs │ │ │ ├── common │ │ │ │ └── dialogs.ts │ │ │ ├── electron-main │ │ │ │ └── dialogMainService.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── testDialogService.ts │ │ ├── download │ │ │ └── common │ │ │ │ ├── download.ts │ │ │ │ ├── downloadIpc.ts │ │ │ │ └── downloadService.ts │ │ ├── driver │ │ │ ├── browser │ │ │ │ └── driver.ts │ │ │ ├── common │ │ │ │ └── driver.ts │ │ │ └── electron-sandbox │ │ │ │ └── driver.ts │ │ ├── editor │ │ │ └── common │ │ │ │ └── editor.ts │ │ ├── environment │ │ │ ├── common │ │ │ │ ├── argv.ts │ │ │ │ ├── environment.ts │ │ │ │ └── environmentService.ts │ │ │ ├── electron-main │ │ │ │ └── environmentMainService.ts │ │ │ └── node │ │ │ │ ├── argv.ts │ │ │ │ ├── argvHelper.ts │ │ │ │ ├── environmentService.ts │ │ │ │ ├── stdin.ts │ │ │ │ ├── userDataPath.d.ts │ │ │ │ ├── userDataPath.js │ │ │ │ └── wait.ts │ │ ├── extensionManagement │ │ │ ├── common │ │ │ │ ├── abstractExtensionManagementService.ts │ │ │ │ ├── configRemotes.ts │ │ │ │ ├── extensionEnablementService.ts │ │ │ │ ├── extensionGalleryService.ts │ │ │ │ ├── extensionManagement.ts │ │ │ │ ├── extensionManagementCLI.ts │ │ │ │ ├── extensionManagementIpc.ts │ │ │ │ ├── extensionManagementUtil.ts │ │ │ │ ├── extensionNls.ts │ │ │ │ ├── extensionStorage.ts │ │ │ │ ├── extensionTipsService.ts │ │ │ │ ├── extensionUrlTrust.ts │ │ │ │ ├── extensionsProfileScannerService.ts │ │ │ │ ├── extensionsScannerService.ts │ │ │ │ ├── implicitActivationEvents.ts │ │ │ │ └── unsupportedExtensionsMigration.ts │ │ │ ├── electron-sandbox │ │ │ │ ├── extensionTipsService.ts │ │ │ │ ├── extensionsProfileScannerService.ts │ │ │ │ └── extensionsScannerService.ts │ │ │ ├── node │ │ │ │ ├── extensionDownloader.ts │ │ │ │ ├── extensionLifecycle.ts │ │ │ │ ├── extensionManagementService.ts │ │ │ │ ├── extensionManagementUtil.ts │ │ │ │ ├── extensionSignatureVerificationService.ts │ │ │ │ ├── extensionUrlTrustService.ts │ │ │ │ ├── extensionsManifestCache.ts │ │ │ │ ├── extensionsProfileScannerService.ts │ │ │ │ ├── extensionsScannerService.ts │ │ │ │ └── extensionsWatcher.ts │ │ │ └── test │ │ │ │ ├── common │ │ │ │ ├── configRemotes.test.ts │ │ │ │ ├── extensionGalleryService.test.ts │ │ │ │ ├── extensionManagement.test.ts │ │ │ │ └── extensionNls.test.ts │ │ │ │ └── node │ │ │ │ ├── extensionsScannerService.test.ts │ │ │ │ └── installGalleryExtensionTask.test.ts │ │ ├── extensions │ │ │ └── common │ │ │ │ ├── extensionValidator.ts │ │ │ │ └── extensions.ts │ │ ├── files │ │ │ ├── browser │ │ │ │ ├── htmlFileSystemProvider.ts │ │ │ │ ├── indexedDBFileSystemProvider.ts │ │ │ │ └── webFileSystemAccess.ts │ │ │ ├── common │ │ │ │ ├── diskFileSystemProvider.ts │ │ │ │ ├── diskFileSystemProviderClient.ts │ │ │ │ ├── fileService.ts │ │ │ │ ├── files.ts │ │ │ │ ├── inMemoryFilesystemProvider.ts │ │ │ │ ├── io.ts │ │ │ │ └── watcher.ts │ │ │ ├── electron-main │ │ │ │ └── diskFileSystemProviderServer.ts │ │ │ ├── node │ │ │ │ ├── diskFileSystemProvider.ts │ │ │ │ ├── diskFileSystemProviderServer.ts │ │ │ │ └── watcher │ │ │ │ │ ├── nodejs │ │ │ │ │ ├── nodejsClient.ts │ │ │ │ │ ├── nodejsWatcher.ts │ │ │ │ │ └── nodejsWatcherLib.ts │ │ │ │ │ ├── parcel │ │ │ │ │ └── parcelWatcher.ts │ │ │ │ │ ├── watcher.ts │ │ │ │ │ ├── watcherClient.ts │ │ │ │ │ └── watcherMain.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ ├── fileService.test.ts │ │ │ │ └── indexedDBFileService.integrationTest.ts │ │ │ │ ├── common │ │ │ │ ├── files.test.ts │ │ │ │ ├── nullFileSystemProvider.ts │ │ │ │ └── watcher.test.ts │ │ │ │ └── node │ │ │ │ ├── diskFileService.test.ts │ │ │ │ ├── fixtures │ │ │ │ ├── resolver │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── company.js │ │ │ │ │ │ ├── conway.js │ │ │ │ │ │ ├── employee.js │ │ │ │ │ │ └── small.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── other │ │ │ │ │ │ └── deep │ │ │ │ │ │ │ ├── company.js │ │ │ │ │ │ │ ├── conway.js │ │ │ │ │ │ │ ├── employee.js │ │ │ │ │ │ │ └── small.js │ │ │ │ │ └── site.css │ │ │ │ └── service │ │ │ │ │ ├── binary.txt │ │ │ │ │ ├── deep │ │ │ │ │ ├── company.js │ │ │ │ │ ├── conway.js │ │ │ │ │ ├── employee.js │ │ │ │ │ └── small.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lorem.txt │ │ │ │ │ ├── small.txt │ │ │ │ │ ├── small_umlaut.txt │ │ │ │ │ ├── some_utf16le.css │ │ │ │ │ └── some_utf8_bom.txt │ │ │ │ ├── nodejsWatcher.integrationTest.ts │ │ │ │ └── parcelWatcher.integrationTest.ts │ │ ├── instantiation │ │ │ ├── common │ │ │ │ ├── descriptors.ts │ │ │ │ ├── extensions.ts │ │ │ │ ├── graph.ts │ │ │ │ ├── instantiation.ts │ │ │ │ ├── instantiationService.ts │ │ │ │ └── serviceCollection.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ ├── graph.test.ts │ │ │ │ ├── instantiationService.test.ts │ │ │ │ └── instantiationServiceMock.ts │ │ ├── ipc │ │ │ ├── electron-browser │ │ │ │ └── mainProcessService.ts │ │ │ └── electron-sandbox │ │ │ │ ├── mainProcessService.ts │ │ │ │ └── services.ts │ │ ├── jsonschemas │ │ │ └── common │ │ │ │ └── jsonContributionRegistry.ts │ │ ├── keybinding │ │ │ └── common │ │ │ │ ├── abstractKeybindingService.ts │ │ │ │ ├── baseResolvedKeybinding.ts │ │ │ │ ├── keybinding.ts │ │ │ │ ├── keybindingResolver.ts │ │ │ │ ├── keybindingsRegistry.ts │ │ │ │ ├── resolvedKeybindingItem.ts │ │ │ │ └── usLayoutResolvedKeybinding.ts │ │ ├── keyboardLayout │ │ │ ├── common │ │ │ │ ├── keyboardConfig.ts │ │ │ │ ├── keyboardLayout.ts │ │ │ │ ├── keyboardLayoutService.ts │ │ │ │ └── keyboardMapper.ts │ │ │ └── electron-main │ │ │ │ └── keyboardLayoutMainService.ts │ │ ├── label │ │ │ └── common │ │ │ │ └── label.ts │ │ ├── languagePacks │ │ │ ├── browser │ │ │ │ └── languagePacks.ts │ │ │ ├── common │ │ │ │ ├── languagePacks.ts │ │ │ │ └── localizedStrings.ts │ │ │ └── node │ │ │ │ └── languagePacks.ts │ │ ├── layout │ │ │ └── browser │ │ │ │ └── layoutService.ts │ │ ├── lifecycle │ │ │ ├── common │ │ │ │ └── lifecycle.ts │ │ │ └── electron-main │ │ │ │ └── lifecycleMainService.ts │ │ ├── list │ │ │ └── browser │ │ │ │ └── listService.ts │ │ ├── log │ │ │ ├── browser │ │ │ │ └── log.ts │ │ │ ├── common │ │ │ │ ├── bufferLog.ts │ │ │ │ ├── consoleLog.ts │ │ │ │ ├── fileLog.ts │ │ │ │ ├── log.ts │ │ │ │ ├── logIpc.ts │ │ │ │ └── logService.ts │ │ │ ├── electron-main │ │ │ │ ├── logIpc.ts │ │ │ │ └── loggerService.ts │ │ │ └── node │ │ │ │ ├── loggerService.ts │ │ │ │ └── spdlogLog.ts │ │ ├── menubar │ │ │ ├── common │ │ │ │ └── menubar.ts │ │ │ ├── electron-main │ │ │ │ └── menubar.ts │ │ │ └── electron-sandbox │ │ │ │ ├── menubar.ts │ │ │ │ └── menubarMainService.ts │ │ ├── native │ │ │ ├── common │ │ │ │ └── native.ts │ │ │ ├── electron-main │ │ │ │ └── nativeHostMainService.ts │ │ │ └── electron-sandbox │ │ │ │ ├── native.ts │ │ │ │ └── nativeHostService.ts │ │ ├── notification │ │ │ ├── common │ │ │ │ └── notification.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── testNotificationService.ts │ │ ├── opener │ │ │ ├── browser │ │ │ │ ├── link.css │ │ │ │ └── link.ts │ │ │ ├── common │ │ │ │ └── opener.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ ├── nullOpenerService.ts │ │ │ │ └── opener.test.ts │ │ ├── policy │ │ │ ├── common │ │ │ │ ├── filePolicyService.ts │ │ │ │ ├── policy.ts │ │ │ │ └── policyIpc.ts │ │ │ └── node │ │ │ │ └── nativePolicyService.ts │ │ ├── product │ │ │ └── common │ │ │ │ ├── product.ts │ │ │ │ └── productService.ts │ │ ├── profiling │ │ │ ├── common │ │ │ │ ├── profiling.ts │ │ │ │ ├── profilingModel.ts │ │ │ │ └── profilingTelemetrySpec.ts │ │ │ ├── electron-main │ │ │ │ └── windowProfiling.ts │ │ │ ├── electron-sandbox │ │ │ │ ├── profileAnalysisWorker.ts │ │ │ │ ├── profileAnalysisWorkerService.ts │ │ │ │ └── profilingService.ts │ │ │ └── node │ │ │ │ └── profilingService.ts │ │ ├── progress │ │ │ └── common │ │ │ │ └── progress.ts │ │ ├── protocol │ │ │ └── electron-main │ │ │ │ ├── protocol.ts │ │ │ │ └── protocolMainService.ts │ │ ├── quickinput │ │ │ ├── browser │ │ │ │ ├── commandsQuickAccess.ts │ │ │ │ ├── helpQuickAccess.ts │ │ │ │ ├── pickerQuickAccess.ts │ │ │ │ ├── quickAccess.ts │ │ │ │ ├── quickInput.ts │ │ │ │ └── quickPickPin.ts │ │ │ └── common │ │ │ │ ├── quickAccess.ts │ │ │ │ └── quickInput.ts │ │ ├── registry │ │ │ ├── common │ │ │ │ └── platform.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── platform.test.ts │ │ ├── remote │ │ │ ├── browser │ │ │ │ ├── browserSocketFactory.ts │ │ │ │ └── remoteAuthorityResolverService.ts │ │ │ ├── common │ │ │ │ ├── remote.ts │ │ │ │ ├── remoteAgentConnection.ts │ │ │ │ ├── remoteAgentEnvironment.ts │ │ │ │ ├── remoteAuthorityResolver.ts │ │ │ │ ├── remoteHosts.ts │ │ │ │ └── sharedProcessTunnelService.ts │ │ │ ├── electron-sandbox │ │ │ │ ├── remoteAuthorityResolverService.ts │ │ │ │ └── sharedProcessTunnelService.ts │ │ │ ├── node │ │ │ │ ├── nodeSocketFactory.ts │ │ │ │ └── wsl.ts │ │ │ └── test │ │ │ │ ├── common │ │ │ │ └── remoteHosts.test.ts │ │ │ │ └── electron-sandbox │ │ │ │ └── remoteAuthorityResolverService.test.ts │ │ ├── request │ │ │ ├── browser │ │ │ │ └── browserRequestService.ts │ │ │ ├── common │ │ │ │ └── request.ts │ │ │ ├── electron-main │ │ │ │ └── requestMainService.ts │ │ │ └── node │ │ │ │ ├── proxy.ts │ │ │ │ └── requestService.ts │ │ ├── sharedProcess │ │ │ ├── common │ │ │ │ └── sharedProcessWorkerService.ts │ │ │ ├── electron-main │ │ │ │ └── sharedProcess.ts │ │ │ └── node │ │ │ │ ├── sharedProcess.ts │ │ │ │ └── sharedProcessEnvironmentService.ts │ │ ├── sign │ │ │ ├── browser │ │ │ │ └── signService.ts │ │ │ ├── common │ │ │ │ └── sign.ts │ │ │ └── node │ │ │ │ └── signService.ts │ │ ├── state │ │ │ ├── electron-main │ │ │ │ ├── state.ts │ │ │ │ └── stateMainService.ts │ │ │ ├── node │ │ │ │ ├── state.ts │ │ │ │ └── stateService.ts │ │ │ └── test │ │ │ │ └── electron-main │ │ │ │ └── state.test.ts │ │ ├── storage │ │ │ ├── common │ │ │ │ ├── storage.ts │ │ │ │ └── storageIpc.ts │ │ │ ├── electron-main │ │ │ │ ├── storageIpc.ts │ │ │ │ ├── storageMain.ts │ │ │ │ └── storageMainService.ts │ │ │ ├── electron-sandbox │ │ │ │ └── storageService.ts │ │ │ └── test │ │ │ │ ├── common │ │ │ │ └── storageService.test.ts │ │ │ │ └── electron-main │ │ │ │ └── storageMainService.test.ts │ │ ├── store │ │ │ └── common │ │ │ │ ├── blockRepository.ts │ │ │ │ ├── blockStore.ts │ │ │ │ ├── commandFacade.ts │ │ │ │ ├── permissionUtils.ts │ │ │ │ ├── record.ts │ │ │ │ ├── recordCacheStore.ts │ │ │ │ ├── recordStore.ts │ │ │ │ ├── spaceRootStore.ts │ │ │ │ ├── spaceStore.ts │ │ │ │ ├── store.ts │ │ │ │ ├── storeConstant.ts │ │ │ │ ├── storeService.ts │ │ │ │ ├── storeStorageProvider.ts │ │ │ │ └── storeUtils.ts │ │ ├── telemetry │ │ │ ├── browser │ │ │ │ ├── 1dsAppender.ts │ │ │ │ └── errorTelemetry.ts │ │ │ ├── common │ │ │ │ ├── 1dsAppender.ts │ │ │ │ ├── commonProperties.ts │ │ │ │ ├── errorTelemetry.ts │ │ │ │ ├── gdprTypings.ts │ │ │ │ ├── remoteTelemetryChannel.ts │ │ │ │ ├── serverTelemetryService.ts │ │ │ │ ├── telemetry.ts │ │ │ │ ├── telemetryIpc.ts │ │ │ │ ├── telemetryLogAppender.ts │ │ │ │ ├── telemetryService.ts │ │ │ │ └── telemetryUtils.ts │ │ │ ├── electron-main │ │ │ │ └── telemetryUtils.ts │ │ │ ├── electron-sandbox │ │ │ │ └── customEndpointTelemetryService.ts │ │ │ ├── node │ │ │ │ ├── 1dsAppender.ts │ │ │ │ ├── customEndpointTelemetryService.ts │ │ │ │ ├── errorTelemetry.ts │ │ │ │ ├── telemetry.ts │ │ │ │ └── telemetryUtils.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ ├── 1dsAppender.test.ts │ │ │ │ └── telemetryService.test.ts │ │ │ │ └── common │ │ │ │ └── telemetryLogAppender.test.ts │ │ ├── theme │ │ │ ├── browser │ │ │ │ ├── defaultStyles.ts │ │ │ │ └── iconsStyleSheet.ts │ │ │ ├── common │ │ │ │ ├── colorRegistry.ts │ │ │ │ ├── colorTheme.ts │ │ │ │ ├── iconRegistry.ts │ │ │ │ ├── iconTheme.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── themeColors.ts │ │ │ │ └── themeService.ts │ │ │ └── electron-main │ │ │ │ └── themeMainService.ts │ │ ├── transaction │ │ │ └── common │ │ │ │ ├── operations.ts │ │ │ │ └── transaction.ts │ │ ├── undoRedo │ │ │ └── common │ │ │ │ ├── undoRedo.ts │ │ │ │ └── undoRedoService.ts │ │ ├── update │ │ │ ├── common │ │ │ │ ├── update.ts │ │ │ │ └── updateIpc.ts │ │ │ └── electron-main │ │ │ │ ├── abstractUpdateService.ts │ │ │ │ └── updateService.darwin.ts │ │ ├── upload │ │ │ └── common │ │ │ │ └── upload.ts │ │ ├── uriIdentity │ │ │ ├── common │ │ │ │ ├── uriIdentity.ts │ │ │ │ └── uriIdentityService.ts │ │ │ └── test │ │ │ │ └── common │ │ │ │ └── uriIdentityService.test.ts │ │ ├── url │ │ │ ├── common │ │ │ │ ├── url.ts │ │ │ │ ├── urlIpc.ts │ │ │ │ └── urlService.ts │ │ │ └── electron-main │ │ │ │ └── electronUrlListener.ts │ │ ├── user │ │ │ └── common │ │ │ │ └── user.ts │ │ ├── userDataProfile │ │ │ ├── browser │ │ │ │ └── userDataProfile.ts │ │ │ ├── common │ │ │ │ ├── userDataProfile.ts │ │ │ │ └── userDataProfileStorageService.ts │ │ │ ├── electron-main │ │ │ │ ├── userDataProfile.ts │ │ │ │ ├── userDataProfileStorageIpc.ts │ │ │ │ └── userDataProfilesHandler.ts │ │ │ ├── electron-sandbox │ │ │ │ ├── userDataProfile.ts │ │ │ │ └── userDataProfileStorageService.ts │ │ │ ├── node │ │ │ │ └── userDataProfile.ts │ │ │ └── test │ │ │ │ ├── common │ │ │ │ ├── userDataProfileService.test.ts │ │ │ │ └── userDataProfileStorageService.test.ts │ │ │ │ └── electron-main │ │ │ │ └── userDataProfileMainService.test.ts │ │ ├── window │ │ │ ├── common │ │ │ │ └── window.ts │ │ │ └── electron-main │ │ │ │ └── window.ts │ │ ├── windows │ │ │ └── electron-main │ │ │ │ ├── appWindow.ts │ │ │ │ ├── windows.ts │ │ │ │ └── windowsMainService.ts │ │ ├── workspace │ │ │ └── common │ │ │ │ ├── virtualWorkspace.ts │ │ │ │ └── workspace.ts │ │ └── workspaces │ │ │ ├── common │ │ │ └── workspaces.ts │ │ │ └── electron-main │ │ │ ├── workspacesHistoryMainService.ts │ │ │ └── workspacesManagementMainService.ts │ └── workbench │ │ ├── browser │ │ ├── actions │ │ │ └── windowActions.ts │ │ ├── composite.ts │ │ ├── editor.ts │ │ ├── layout.ts │ │ ├── layoutState.ts │ │ ├── media │ │ │ ├── part.css │ │ │ └── style.css │ │ ├── panecomposite.ts │ │ ├── part.ts │ │ ├── parts │ │ │ ├── activitybar │ │ │ │ ├── activitybarActions.ts │ │ │ │ ├── activitybarPart.ts │ │ │ │ └── media │ │ │ │ │ ├── activityaction.css │ │ │ │ │ └── activitybarpart.css │ │ │ ├── compositeBar.ts │ │ │ ├── compositeBarAction.ts │ │ │ ├── compositePart.ts │ │ │ ├── dialogs │ │ │ │ ├── dialog.web.contribution.ts │ │ │ │ └── dialogHandler.ts │ │ │ ├── editor │ │ │ │ ├── editor.contribution.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── editorGroupView.ts │ │ │ │ ├── editorPane.ts │ │ │ │ ├── editorPanes.ts │ │ │ │ ├── editorPart.ts │ │ │ │ ├── editorStatus.ts │ │ │ │ ├── editorWithViewState.ts │ │ │ │ ├── emptyHolder.ts │ │ │ │ ├── media │ │ │ │ │ └── editorgroupview.css │ │ │ │ ├── textEditor.ts │ │ │ │ ├── textMoteEditor.ts │ │ │ │ └── textResourceEditor.ts │ │ │ ├── media │ │ │ │ └── compositepart.css │ │ │ ├── paneCompositePart.ts │ │ │ ├── sidebar │ │ │ │ └── sidebarPart.ts │ │ │ ├── statusbar │ │ │ │ ├── media │ │ │ │ │ └── statusbarpart.css │ │ │ │ ├── statusbarItem.ts │ │ │ │ ├── statusbarModel.ts │ │ │ │ └── statusbarPart.ts │ │ │ ├── titlebar │ │ │ │ ├── media │ │ │ │ │ ├── menubarControl.css │ │ │ │ │ └── titlebarpart.css │ │ │ │ ├── menubarControl.ts │ │ │ │ ├── titlebarPart.ts │ │ │ │ └── windowTitle.ts │ │ │ └── views │ │ │ │ ├── media │ │ │ │ ├── paneviewlet.css │ │ │ │ └── views.css │ │ │ │ ├── viewPane.ts │ │ │ │ ├── viewPaneContainer.ts │ │ │ │ └── viewsService.ts │ │ ├── quickaccess.ts │ │ ├── style.ts │ │ ├── web.api.ts │ │ ├── web.factory.ts │ │ ├── web.main.ts │ │ ├── window.ts │ │ ├── workbench.contribution.ts │ │ └── workbench.ts │ │ ├── common │ │ ├── actions │ │ │ └── spaceActions.ts │ │ ├── activity.ts │ │ ├── component.ts │ │ ├── composite.ts │ │ ├── contextkeys.ts │ │ ├── contributions.ts │ │ ├── dialogs.ts │ │ ├── editor.ts │ │ ├── editor │ │ │ ├── editorModel.ts │ │ │ ├── resourceEditorInput.ts │ │ │ ├── textEditorModel.ts │ │ │ ├── textResourceEditorInput.ts │ │ │ └── textResourceEditorModel.ts │ │ ├── editorGroupModel.ts │ │ ├── editorInput.ts │ │ ├── logConstants.ts │ │ ├── memento.ts │ │ ├── notifications.ts │ │ ├── panecomposite.ts │ │ ├── sideBySideEditorInput.ts │ │ ├── theme.ts │ │ ├── treeView.ts │ │ └── views.ts │ │ ├── contrib │ │ ├── documentEditor │ │ │ └── browser │ │ │ │ ├── documentEditor.contribution.ts │ │ │ │ ├── documentEditorInput.ts │ │ │ │ └── view │ │ │ │ └── documentEditor.ts │ │ ├── login │ │ │ └── browser │ │ │ │ ├── login.contribution.ts │ │ │ │ ├── login.ts │ │ │ │ └── loginInput.ts │ │ ├── onboardWorkspace │ │ │ └── browser │ │ │ │ ├── onboardWorkspace.contribution.ts │ │ │ │ ├── onboardWorkspace.ts │ │ │ │ └── onboardWorkspaceInput.ts │ │ ├── pages │ │ │ ├── browser │ │ │ │ ├── explorerViewlet.ts │ │ │ │ ├── pages.contribution.ts │ │ │ │ └── views │ │ │ │ │ ├── emptyView.ts │ │ │ │ │ ├── explorerView.ts │ │ │ │ │ ├── outliner.ts │ │ │ │ │ ├── workspaceHeaderView.ts │ │ │ │ │ ├── workspacesController.ts │ │ │ │ │ └── workspacesPicker.ts │ │ │ └── common │ │ │ │ └── files.ts │ │ ├── performance │ │ │ ├── browser │ │ │ │ ├── inputLatencyContrib.ts │ │ │ │ ├── performance.contribution.ts │ │ │ │ ├── performance.web.contribution.ts │ │ │ │ ├── perfviewEditor.ts │ │ │ │ └── startupTimings.ts │ │ │ └── electron-sandbox │ │ │ │ ├── performance.contribution.ts │ │ │ │ ├── rendererAutoProfiler.ts │ │ │ │ ├── startupProfiler.ts │ │ │ │ └── startupTimings.ts │ │ ├── quickaccess │ │ │ └── browser │ │ │ │ ├── commandsQuickAccess.ts │ │ │ │ ├── quickAccess.contribution.ts │ │ │ │ └── viewQuickAccess.ts │ │ └── quickmenu │ │ │ └── browser │ │ │ └── quickmenu.contribution.ts │ │ ├── electron-sandbox │ │ ├── desktop.main.ts │ │ ├── parts │ │ │ └── titlebar │ │ │ │ ├── menubarControl.ts │ │ │ │ └── titlebarPart.ts │ │ └── window.ts │ │ ├── services │ │ ├── accessibility │ │ │ └── electron-sandbox │ │ │ │ └── accessibilityService.ts │ │ ├── activity │ │ │ ├── browser │ │ │ │ └── activityService.ts │ │ │ └── common │ │ │ │ └── activity.ts │ │ ├── commands │ │ │ └── common │ │ │ │ └── commandService.ts │ │ ├── configuration │ │ │ ├── browser │ │ │ │ ├── workbenchConfiguration.ts │ │ │ │ └── workbenchConfigurationService.ts │ │ │ └── common │ │ │ │ ├── configurationCache.ts │ │ │ │ ├── workbenchConfiguration.ts │ │ │ │ └── workbenchConfigurationModel.ts │ │ ├── contextmenu │ │ │ ├── browser │ │ │ │ └── contextmenuService.ts │ │ │ └── electron-sandbox │ │ │ │ └── contextmenuService.ts │ │ ├── credentials │ │ │ └── browser │ │ │ │ └── credentialsService.ts │ │ ├── dialogs │ │ │ └── common │ │ │ │ └── dialogService.ts │ │ ├── editor │ │ │ ├── browser │ │ │ │ ├── editorResolverService.ts │ │ │ │ ├── editorService.ts │ │ │ │ └── moteEditorService.ts │ │ │ └── common │ │ │ │ ├── editorGroupFinder.ts │ │ │ │ ├── editorGroupsService.ts │ │ │ │ ├── editorResolverService.ts │ │ │ │ └── editorService.ts │ │ ├── environment │ │ │ ├── browser │ │ │ │ └── environmentService.ts │ │ │ ├── common │ │ │ │ └── environmentService.ts │ │ │ └── electron-sandbox │ │ │ │ └── environmentService.ts │ │ ├── extensions │ │ │ └── common │ │ │ │ ├── extensionHostProtocol.ts │ │ │ │ ├── extensions.ts │ │ │ │ ├── extensionsApiProposals.ts │ │ │ │ └── extensionsRegistry.ts │ │ ├── files │ │ │ ├── browser │ │ │ │ └── elevatedFileService.ts │ │ │ ├── common │ │ │ │ ├── elevatedFileService.ts │ │ │ │ └── files.ts │ │ │ └── electron-sandbox │ │ │ │ ├── diskFileSystemProvider.ts │ │ │ │ ├── elevatedFileService.ts │ │ │ │ └── watcherClient.ts │ │ ├── filesConfiguration │ │ │ └── common │ │ │ │ └── filesConfigurationService.ts │ │ ├── host │ │ │ ├── browser │ │ │ │ ├── browserHostService.ts │ │ │ │ └── host.ts │ │ │ └── electron-sandbox │ │ │ │ └── nativeHostService.ts │ │ ├── hover │ │ │ └── browser │ │ │ │ ├── hover.ts │ │ │ │ ├── hoverService.ts │ │ │ │ ├── hoverWidget.ts │ │ │ │ └── media │ │ │ │ └── hover.css │ │ ├── keybinding │ │ │ ├── browser │ │ │ │ ├── browserKeyboardLayoutService.ts │ │ │ │ ├── keybindingService.ts │ │ │ │ ├── keyboardLayouts │ │ │ │ │ ├── _.contribution.ts │ │ │ │ │ ├── cz.win.ts │ │ │ │ │ ├── de-swiss.win.ts │ │ │ │ │ ├── de.darwin.ts │ │ │ │ │ ├── de.linux.ts │ │ │ │ │ ├── de.win.ts │ │ │ │ │ ├── dk.win.ts │ │ │ │ │ ├── dvorak.darwin.ts │ │ │ │ │ ├── en-belgian.win.ts │ │ │ │ │ ├── en-ext.darwin.ts │ │ │ │ │ ├── en-in.win.ts │ │ │ │ │ ├── en-intl.darwin.ts │ │ │ │ │ ├── en-intl.win.ts │ │ │ │ │ ├── en-uk.darwin.ts │ │ │ │ │ ├── en-uk.win.ts │ │ │ │ │ ├── en.darwin.ts │ │ │ │ │ ├── en.linux.ts │ │ │ │ │ ├── en.win.ts │ │ │ │ │ ├── es-latin.win.ts │ │ │ │ │ ├── es.darwin.ts │ │ │ │ │ ├── es.linux.ts │ │ │ │ │ ├── es.win.ts │ │ │ │ │ ├── fr.darwin.ts │ │ │ │ │ ├── fr.linux.ts │ │ │ │ │ ├── fr.win.ts │ │ │ │ │ ├── hu.win.ts │ │ │ │ │ ├── it.darwin.ts │ │ │ │ │ ├── it.win.ts │ │ │ │ │ ├── jp-roman.darwin.ts │ │ │ │ │ ├── jp.darwin.ts │ │ │ │ │ ├── ko.darwin.ts │ │ │ │ │ ├── layout.contribution.darwin.ts │ │ │ │ │ ├── layout.contribution.linux.ts │ │ │ │ │ ├── layout.contribution.win.ts │ │ │ │ │ ├── no.win.ts │ │ │ │ │ ├── pl.darwin.ts │ │ │ │ │ ├── pl.win.ts │ │ │ │ │ ├── pt-br.win.ts │ │ │ │ │ ├── pt.darwin.ts │ │ │ │ │ ├── pt.win.ts │ │ │ │ │ ├── ru.darwin.ts │ │ │ │ │ ├── ru.linux.ts │ │ │ │ │ ├── ru.win.ts │ │ │ │ │ ├── sv.darwin.ts │ │ │ │ │ ├── sv.win.ts │ │ │ │ │ ├── thai.win.ts │ │ │ │ │ ├── tr.win.ts │ │ │ │ │ └── zh-hans.darwin.ts │ │ │ │ └── navigatorKeyboard.ts │ │ │ ├── common │ │ │ │ ├── fallbackKeyboardMapper.ts │ │ │ │ ├── keymapInfo.ts │ │ │ │ ├── macLinuxKeyboardMapper.ts │ │ │ │ └── windowsKeyboardMapper.ts │ │ │ └── electron-sandbox │ │ │ │ ├── nativeKeyboardLayout.ts │ │ │ │ └── nativeKeyboardLayoutService.ts │ │ ├── label │ │ │ ├── common │ │ │ │ └── labelService.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ └── label.test.ts │ │ │ │ ├── common │ │ │ │ └── mockLabelService.ts │ │ │ │ └── electron-browser │ │ │ │ └── label.test.ts │ │ ├── layout │ │ │ └── browser │ │ │ │ └── layoutService.ts │ │ ├── lifecycle │ │ │ ├── browser │ │ │ │ └── lifecycleService.ts │ │ │ ├── common │ │ │ │ ├── lifecycle.ts │ │ │ │ └── lifecycleService.ts │ │ │ ├── electron-sandbox │ │ │ │ └── lifecycleService.ts │ │ │ └── test │ │ │ │ └── electron-browser │ │ │ │ └── lifecycleService.test.ts │ │ ├── log │ │ │ └── electron-sandbox │ │ │ │ └── logService.ts │ │ ├── menubar │ │ │ └── electron-sandbox │ │ │ │ └── menubarService.ts │ │ ├── model │ │ │ └── common │ │ │ │ └── modelService.ts │ │ ├── notification │ │ │ └── common │ │ │ │ └── notificationService.ts │ │ ├── output │ │ │ └── common │ │ │ │ ├── delayedLogChannel.ts │ │ │ │ └── output.ts │ │ ├── panecomposite │ │ │ └── browser │ │ │ │ └── panecomposite.ts │ │ ├── path │ │ │ ├── browser │ │ │ │ └── pathService.ts │ │ │ ├── common │ │ │ │ └── pathService.ts │ │ │ └── electron-sandbox │ │ │ │ └── pathService.ts │ │ ├── progress │ │ │ ├── browser │ │ │ │ ├── media │ │ │ │ │ └── progressService.css │ │ │ │ ├── progressIndicator.ts │ │ │ │ └── progressService.ts │ │ │ └── test │ │ │ │ └── browser │ │ │ │ └── progressIndicator.test.ts │ │ ├── quickinput │ │ │ └── browser │ │ │ │ └── workbenchQuickInputService.ts │ │ ├── quickmenu │ │ │ └── browser │ │ │ │ ├── quickmenu.ts │ │ │ │ └── quickmenuService.ts │ │ ├── remote │ │ │ ├── browser │ │ │ │ ├── remoteAgentService.ts │ │ │ │ └── remoteService.ts │ │ │ ├── common │ │ │ │ ├── abstractRemoteAgentService.ts │ │ │ │ ├── remoteAgentEnvironmentChannel.ts │ │ │ │ ├── remoteAgentService.ts │ │ │ │ ├── remoteExplorerService.ts │ │ │ │ ├── remoteFileSystemProviderClient.ts │ │ │ │ └── requestQueue.ts │ │ │ └── electron-sandbox │ │ │ │ └── remoteAgentService.ts │ │ ├── statusbar │ │ │ └── browser │ │ │ │ └── statusbar.ts │ │ ├── storage │ │ │ ├── browser │ │ │ │ └── storageService.ts │ │ │ ├── electron-sandbox │ │ │ │ └── storageService.ts │ │ │ └── test │ │ │ │ └── browser │ │ │ │ └── storageService.test.ts │ │ ├── textfile │ │ │ ├── browser │ │ │ │ ├── browserTextFileService.ts │ │ │ │ └── textFileService.ts │ │ │ ├── common │ │ │ │ ├── encoding.ts │ │ │ │ ├── textEditorService.ts │ │ │ │ ├── textFileEditorModel.ts │ │ │ │ ├── textFileEditorModelManager.ts │ │ │ │ ├── textFileSaveParticipant.ts │ │ │ │ └── textfiles.ts │ │ │ ├── electron-sandbox │ │ │ │ └── nativeTextFileService.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ ├── browserTextFileService.io.test.ts │ │ │ │ ├── fixtures │ │ │ │ │ └── files.ts │ │ │ │ ├── textEditorService.test.ts │ │ │ │ ├── textFileEditorModel.test.ts │ │ │ │ ├── textFileEditorModelManager.test.ts │ │ │ │ └── textFileService.test.ts │ │ │ │ ├── common │ │ │ │ └── textFileService.io.test.ts │ │ │ │ ├── electron-browser │ │ │ │ ├── fixtures │ │ │ │ │ ├── binary.txt │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lorem.txt │ │ │ │ │ ├── lorem_big5.txt │ │ │ │ │ ├── lorem_cp1252.txt │ │ │ │ │ ├── lorem_cp866.txt │ │ │ │ │ ├── lorem_gbk.txt │ │ │ │ │ ├── lorem_shiftjis.txt │ │ │ │ │ ├── lorem_utf16be.txt │ │ │ │ │ ├── lorem_utf16le.txt │ │ │ │ │ ├── lorem_utf8bom.txt │ │ │ │ │ ├── small.txt │ │ │ │ │ ├── small_umlaut.txt │ │ │ │ │ ├── some.utf16le │ │ │ │ │ ├── some_big5.txt │ │ │ │ │ ├── some_cp1252.txt │ │ │ │ │ ├── some_cyrillic.txt │ │ │ │ │ ├── some_gbk.txt │ │ │ │ │ ├── some_shiftjis.txt │ │ │ │ │ ├── some_small_cp1252.txt │ │ │ │ │ ├── some_utf16le.css │ │ │ │ │ ├── some_utf8_bom.txt │ │ │ │ │ ├── utf16_be_nobom.txt │ │ │ │ │ └── utf16_le_nobom.txt │ │ │ │ ├── nativeTextFileService.io.test.ts │ │ │ │ └── nativeTextFileService.test.ts │ │ │ │ └── node │ │ │ │ └── encoding │ │ │ │ ├── encoding.integrationTest.ts │ │ │ │ ├── encoding.test.ts │ │ │ │ └── fixtures │ │ │ │ ├── empty.txt │ │ │ │ ├── issue_102202.txt │ │ │ │ ├── some.cp1252.txt │ │ │ │ ├── some.css.qwoff │ │ │ │ ├── some.json.png │ │ │ │ ├── some.pdf │ │ │ │ ├── some.png.txt │ │ │ │ ├── some.qwoff.txt │ │ │ │ ├── some.shiftjis.txt │ │ │ │ ├── some.xml.png │ │ │ │ ├── some_ansi.css │ │ │ │ ├── some_file.css │ │ │ │ ├── some_gbk.txt │ │ │ │ ├── some_utf16be.css │ │ │ │ ├── some_utf16le.css │ │ │ │ ├── some_utf8.css │ │ │ │ ├── utf16_be_nobom.txt │ │ │ │ └── utf16_le_nobom.txt │ │ ├── textmodelResolver │ │ │ └── common │ │ │ │ └── textModelResolverService.ts │ │ ├── textresourceProperties │ │ │ └── common │ │ │ │ └── textResourcePropertiesService.ts │ │ ├── themes │ │ │ ├── browser │ │ │ │ ├── browserHostColorSchemeService.ts │ │ │ │ ├── productIconThemeData.ts │ │ │ │ └── workbenchThemeService.ts │ │ │ ├── common │ │ │ │ ├── colorThemeData.ts │ │ │ │ ├── colorThemeSchema.ts │ │ │ │ ├── hostColorSchemeService.ts │ │ │ │ ├── themeConfiguration.ts │ │ │ │ ├── themeExstensionPoints.ts │ │ │ │ └── workbenchThemeService.ts │ │ │ └── electron-sandbox │ │ │ │ └── nativeHostColorSchemeService.ts │ │ ├── timer │ │ │ ├── browser │ │ │ │ └── timerService.ts │ │ │ └── electron-sandbox │ │ │ │ └── timerService.ts │ │ ├── title │ │ │ ├── common │ │ │ │ └── titleService.ts │ │ │ └── electron-sandbox │ │ │ │ └── titleService.ts │ │ ├── update │ │ │ ├── browser │ │ │ │ └── updateService.ts │ │ │ └── electron-sandbox │ │ │ │ └── updateService.ts │ │ ├── url │ │ │ ├── browser │ │ │ │ └── urlService.ts │ │ │ └── electron-sandbox │ │ │ │ └── urlService.ts │ │ ├── user │ │ │ └── common │ │ │ │ ├── user.ts │ │ │ │ └── userService.ts │ │ ├── userDataProfile │ │ │ ├── browser │ │ │ │ ├── extensionsResource.ts │ │ │ │ ├── globalStateResource.ts │ │ │ │ ├── keybindingsResource.ts │ │ │ │ ├── settingsResource.ts │ │ │ │ ├── snippetsResource.ts │ │ │ │ ├── tasksResource.ts │ │ │ │ ├── userDataProfileImportExportService.ts │ │ │ │ ├── userDataProfileManagement.ts │ │ │ │ └── userDataProfileStorageService.ts │ │ │ └── common │ │ │ │ ├── userDataProfile.ts │ │ │ │ └── userDataProfileService.ts │ │ ├── views │ │ │ ├── browser │ │ │ │ └── viewDescriptorService.ts │ │ │ └── common │ │ │ │ └── viewContainerModel.ts │ │ ├── workingCopy │ │ │ ├── browser │ │ │ │ ├── workingCopyBackupService.ts │ │ │ │ ├── workingCopyBackupTracker.ts │ │ │ │ └── workingCopyHistoryService.ts │ │ │ ├── common │ │ │ │ ├── abstractFileWorkingCopyManager.ts │ │ │ │ ├── fileWorkingCopy.ts │ │ │ │ ├── fileWorkingCopyManager.ts │ │ │ │ ├── resourceWorkingCopy.ts │ │ │ │ ├── storedFileWorkingCopy.ts │ │ │ │ ├── storedFileWorkingCopyManager.ts │ │ │ │ ├── storedFileWorkingCopySaveParticipant.ts │ │ │ │ ├── untitledFileWorkingCopy.ts │ │ │ │ ├── untitledFileWorkingCopyManager.ts │ │ │ │ ├── workingCopy.ts │ │ │ │ ├── workingCopyBackup.ts │ │ │ │ ├── workingCopyBackupService.ts │ │ │ │ ├── workingCopyBackupTracker.ts │ │ │ │ ├── workingCopyEditorService.ts │ │ │ │ ├── workingCopyFileOperationParticipant.ts │ │ │ │ ├── workingCopyFileService.ts │ │ │ │ ├── workingCopyHistory.ts │ │ │ │ ├── workingCopyHistoryService.ts │ │ │ │ ├── workingCopyHistoryTracker.ts │ │ │ │ └── workingCopyService.ts │ │ │ ├── electron-sandbox │ │ │ │ ├── workingCopyBackupService.ts │ │ │ │ ├── workingCopyBackupTracker.ts │ │ │ │ └── workingCopyHistoryService.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ ├── fileWorkingCopyManager.test.ts │ │ │ │ ├── resourceWorkingCopy.test.ts │ │ │ │ ├── storedFileWorkingCopy.test.ts │ │ │ │ ├── storedFileWorkingCopyManager.test.ts │ │ │ │ ├── untitledFileWorkingCopy.test.ts │ │ │ │ ├── untitledFileWorkingCopyManager.test.ts │ │ │ │ ├── workingCopyBackupTracker.test.ts │ │ │ │ ├── workingCopyEditorService.test.ts │ │ │ │ └── workingCopyFileService.test.ts │ │ │ │ ├── common │ │ │ │ └── workingCopyService.test.ts │ │ │ │ └── electron-browser │ │ │ │ ├── fixtures │ │ │ │ └── binary.txt │ │ │ │ ├── workingCopyBackupService.test.ts │ │ │ │ ├── workingCopyBackupTracker.test.ts │ │ │ │ ├── workingCopyHistoryService.test.ts │ │ │ │ └── workingCopyHistoryTracker.test.ts │ │ └── workspaces │ │ │ └── browser │ │ │ ├── browserWorkspacesService.ts │ │ │ ├── workspaces.ts │ │ │ └── workspacesService.ts │ │ ├── workbench.common.main.css │ │ ├── workbench.common.main.ts │ │ ├── workbench.desktop.main.css │ │ ├── workbench.desktop.main.nls.js │ │ ├── workbench.desktop.main.ts │ │ ├── workbench.web.main.css │ │ ├── workbench.web.main.nls.js │ │ └── workbench.web.main.ts ├── server-cli.js ├── server-main.js ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.monaco.json ├── tsconfig.tsec.json ├── tsconfig.vscode-dts.json ├── tsconfig.vscode-proposed-dts.json ├── tsec.exemptions.json └── typings │ ├── require.d.ts │ ├── thenable.d.ts │ └── windows-registry.d.ts ├── staticwebapp.config.json ├── test ├── .mocharc.json ├── README.md ├── automation │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── activityBar.ts │ │ ├── application.ts │ │ ├── code.ts │ │ ├── debug.ts │ │ ├── editor.ts │ │ ├── editors.ts │ │ ├── electron.ts │ │ ├── explorer.ts │ │ ├── extensions.ts │ │ ├── index.ts │ │ ├── keybindings.ts │ │ ├── localization.ts │ │ ├── logger.ts │ │ ├── notebook.ts │ │ ├── peek.ts │ │ ├── playwrightBrowser.ts │ │ ├── playwrightDriver.ts │ │ ├── playwrightElectron.ts │ │ ├── problems.ts │ │ ├── processes.ts │ │ ├── quickaccess.ts │ │ ├── quickinput.ts │ │ ├── scm.ts │ │ ├── search.ts │ │ ├── settings.ts │ │ ├── statusbar.ts │ │ ├── terminal.ts │ │ ├── viewlet.ts │ │ └── workbench.ts │ ├── tools │ │ ├── copy-driver-definition.js │ │ └── copy-package-version.js │ ├── tsconfig.json │ └── yarn.lock ├── cgmanifest.json ├── integration │ ├── browser │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── electron │ │ └── testrunner.js ├── leaks │ ├── index.html │ ├── package.json │ ├── server.js │ └── yarn.lock ├── monaco │ ├── .gitignore │ ├── .mocharc.json │ ├── README.md │ ├── core.js │ ├── dist │ │ └── core.html │ ├── esm-check │ │ ├── esm-check.js │ │ ├── index.html │ │ └── index.js │ ├── monaco.test.ts │ ├── package.json │ ├── runner.js │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── smoke │ ├── .gitignore │ ├── Audit.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── areas │ │ │ ├── extensions │ │ │ │ └── extensions.test.ts │ │ │ ├── languages │ │ │ │ └── languages.test.ts │ │ │ ├── multiroot │ │ │ │ └── multiroot.test.ts │ │ │ ├── notebook │ │ │ │ └── notebook.test.ts │ │ │ ├── preferences │ │ │ │ └── preferences.test.ts │ │ │ ├── search │ │ │ │ └── search.test.ts │ │ │ ├── statusbar │ │ │ │ └── statusbar.test.ts │ │ │ ├── terminal │ │ │ │ ├── terminal-editors.test.ts │ │ │ │ ├── terminal-helpers.ts │ │ │ │ ├── terminal-input.test.ts │ │ │ │ ├── terminal-persistence.test.ts │ │ │ │ ├── terminal-profiles.test.ts │ │ │ │ ├── terminal-shellIntegration.test.ts │ │ │ │ ├── terminal-splitCwd.test.ts │ │ │ │ ├── terminal-tabs.test.ts │ │ │ │ └── terminal.test.ts │ │ │ └── workbench │ │ │ │ ├── data-loss.test.ts │ │ │ │ ├── launch.test.ts │ │ │ │ └── localization.test.ts │ │ ├── main.ts │ │ └── utils.ts │ ├── test │ │ └── index.js │ ├── tsconfig.json │ └── yarn.lock └── unit │ ├── README.md │ ├── assert.js │ ├── browser │ ├── index.js │ └── renderer.html │ ├── coverage.js │ ├── electron │ ├── index.js │ ├── renderer.html │ └── renderer.js │ ├── fullJsonStreamReporter.js │ ├── node │ └── index.js │ └── reporter.js ├── tsfmt.json └── yarn.lock /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/cache/before-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/cache/before-cache.sh -------------------------------------------------------------------------------- /.devcontainer/cache/build-cache-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/cache/build-cache-image.sh -------------------------------------------------------------------------------- /.devcontainer/cache/cache-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/cache/cache-diff.sh -------------------------------------------------------------------------------- /.devcontainer/cache/cache.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/cache/cache.Dockerfile -------------------------------------------------------------------------------- /.devcontainer/cache/restore-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/cache/restore-diff.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.devcontainer/prepare.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.git-blame-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.git-blame-ignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/calendar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/calendar.yml -------------------------------------------------------------------------------- /.github/classifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/classifier.json -------------------------------------------------------------------------------- /.github/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/commands.json -------------------------------------------------------------------------------- /.github/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/commands.yml -------------------------------------------------------------------------------- /.github/endgame/insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/endgame/insiders.yml -------------------------------------------------------------------------------- /.github/insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/insiders.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/similarity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/similarity.yml -------------------------------------------------------------------------------- /.github/subscribers.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /.github/workflows/author-verified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/author-verified.yml -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/azure-static-web-apps.yml -------------------------------------------------------------------------------- /.github/workflows/bad-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/bad-tag.yml -------------------------------------------------------------------------------- /.github/workflows/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/basic.yml -------------------------------------------------------------------------------- /.github/workflows/check-clean-git-state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/check-clean-git-state.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deep-classifier-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/deep-classifier-runner.yml -------------------------------------------------------------------------------- /.github/workflows/deep-classifier-scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/deep-classifier-scraper.yml -------------------------------------------------------------------------------- /.github/workflows/devcontainer-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/devcontainer-cache.yml -------------------------------------------------------------------------------- /.github/workflows/english-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/english-please.yml -------------------------------------------------------------------------------- /.github/workflows/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/latest-release-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/latest-release-monitor.yml -------------------------------------------------------------------------------- /.github/workflows/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/locker.yml -------------------------------------------------------------------------------- /.github/workflows/monaco-editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/monaco-editor.yml -------------------------------------------------------------------------------- /.github/workflows/needs-more-info-closer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/needs-more-info-closer.yml -------------------------------------------------------------------------------- /.github/workflows/no-yarn-lock-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/no-yarn-lock-changes.yml -------------------------------------------------------------------------------- /.github/workflows/on-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/on-comment.yml -------------------------------------------------------------------------------- /.github/workflows/on-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/on-label.yml -------------------------------------------------------------------------------- /.github/workflows/on-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/on-open.yml -------------------------------------------------------------------------------- /.github/workflows/release-pipeline-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/release-pipeline-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/test-plan-item-validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.github/workflows/test-plan-item-validator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.lsifrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.lsifrc.json -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.mailmap -------------------------------------------------------------------------------- /.mention-bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.mention-bot -------------------------------------------------------------------------------- /.vscode/cglicenses.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/cglicenses.schema.json -------------------------------------------------------------------------------- /.vscode/cgmanifest.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/cgmanifest.schema.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/notebooks/api.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/api.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/endgame.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/endgame.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/grooming-delta.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/grooming-delta.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/inbox.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/inbox.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/my-endgame.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/my-endgame.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/my-work.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/my-work.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/papercuts.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/papercuts.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/verification.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/verification.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/vscode-dev.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/notebooks/vscode-dev.github-issues -------------------------------------------------------------------------------- /.vscode/searches/ts36031.code-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/searches/ts36031.code-search -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/shared.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/shared.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/babel.config.js -------------------------------------------------------------------------------- /cglicenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/cglicenses.json -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/gulpfile.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/_xcode.env -------------------------------------------------------------------------------- /ios/mote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/mote.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/mote/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/AppDelegate.h -------------------------------------------------------------------------------- /ios/mote/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/AppDelegate.mm -------------------------------------------------------------------------------- /ios/mote/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/mote/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/Info.plist -------------------------------------------------------------------------------- /ios/mote/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/mote/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/mote/main.m -------------------------------------------------------------------------------- /ios/moteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/moteTests/Info.plist -------------------------------------------------------------------------------- /ios/moteTests/moteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/ios/moteTests/moteTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/package.json -------------------------------------------------------------------------------- /product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/product.json -------------------------------------------------------------------------------- /remote/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/.yarnrc -------------------------------------------------------------------------------- /remote/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/package-lock.json -------------------------------------------------------------------------------- /remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/package.json -------------------------------------------------------------------------------- /remote/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/web/package-lock.json -------------------------------------------------------------------------------- /remote/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/web/package.json -------------------------------------------------------------------------------- /remote/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/web/yarn.lock -------------------------------------------------------------------------------- /remote/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/remote/yarn.lock -------------------------------------------------------------------------------- /resources/completions/bash/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/completions/bash/code -------------------------------------------------------------------------------- /resources/completions/zsh/_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/completions/zsh/_code -------------------------------------------------------------------------------- /resources/darwin/bat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/bat.icns -------------------------------------------------------------------------------- /resources/darwin/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/bin/code.sh -------------------------------------------------------------------------------- /resources/darwin/bower.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/bower.icns -------------------------------------------------------------------------------- /resources/darwin/c.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/c.icns -------------------------------------------------------------------------------- /resources/darwin/config.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/config.icns -------------------------------------------------------------------------------- /resources/darwin/cpp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/cpp.icns -------------------------------------------------------------------------------- /resources/darwin/csharp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/csharp.icns -------------------------------------------------------------------------------- /resources/darwin/css.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/css.icns -------------------------------------------------------------------------------- /resources/darwin/default.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/default.icns -------------------------------------------------------------------------------- /resources/darwin/go.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/go.icns -------------------------------------------------------------------------------- /resources/darwin/html.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/html.icns -------------------------------------------------------------------------------- /resources/darwin/jade.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/jade.icns -------------------------------------------------------------------------------- /resources/darwin/java.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/java.icns -------------------------------------------------------------------------------- /resources/darwin/javascript.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/javascript.icns -------------------------------------------------------------------------------- /resources/darwin/json.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/json.icns -------------------------------------------------------------------------------- /resources/darwin/less.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/less.icns -------------------------------------------------------------------------------- /resources/darwin/markdown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/markdown.icns -------------------------------------------------------------------------------- /resources/darwin/mote.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/mote.icns -------------------------------------------------------------------------------- /resources/darwin/php.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/php.icns -------------------------------------------------------------------------------- /resources/darwin/powershell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/powershell.icns -------------------------------------------------------------------------------- /resources/darwin/python.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/python.icns -------------------------------------------------------------------------------- /resources/darwin/react.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/react.icns -------------------------------------------------------------------------------- /resources/darwin/ruby.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/ruby.icns -------------------------------------------------------------------------------- /resources/darwin/sass.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/sass.icns -------------------------------------------------------------------------------- /resources/darwin/shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/shell.icns -------------------------------------------------------------------------------- /resources/darwin/sql.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/sql.icns -------------------------------------------------------------------------------- /resources/darwin/typescript.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/typescript.icns -------------------------------------------------------------------------------- /resources/darwin/vue.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/vue.icns -------------------------------------------------------------------------------- /resources/darwin/xml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/xml.icns -------------------------------------------------------------------------------- /resources/darwin/yaml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/darwin/yaml.icns -------------------------------------------------------------------------------- /resources/linux/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/bin/code.sh -------------------------------------------------------------------------------- /resources/linux/code-url-handler.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/code-url-handler.desktop -------------------------------------------------------------------------------- /resources/linux/code-workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/code-workspace.xml -------------------------------------------------------------------------------- /resources/linux/code.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/code.appdata.xml -------------------------------------------------------------------------------- /resources/linux/code.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/code.desktop -------------------------------------------------------------------------------- /resources/linux/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/code.png -------------------------------------------------------------------------------- /resources/linux/debian/control.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/debian/control.template -------------------------------------------------------------------------------- /resources/linux/debian/postinst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/debian/postinst.template -------------------------------------------------------------------------------- /resources/linux/debian/postrm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/debian/postrm.template -------------------------------------------------------------------------------- /resources/linux/debian/prerm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/debian/prerm.template -------------------------------------------------------------------------------- /resources/linux/rpm/code.spec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/rpm/code.spec.template -------------------------------------------------------------------------------- /resources/linux/rpm/code.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/rpm/code.xpm -------------------------------------------------------------------------------- /resources/linux/snap/electron-launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/snap/electron-launch -------------------------------------------------------------------------------- /resources/linux/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/linux/snap/snapcraft.yaml -------------------------------------------------------------------------------- /resources/server/bin-dev/helpers/browser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin-dev/helpers/browser.cmd -------------------------------------------------------------------------------- /resources/server/bin-dev/helpers/browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin-dev/helpers/browser.sh -------------------------------------------------------------------------------- /resources/server/bin-dev/remote-cli/code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin-dev/remote-cli/code.cmd -------------------------------------------------------------------------------- /resources/server/bin-dev/remote-cli/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin-dev/remote-cli/code.sh -------------------------------------------------------------------------------- /resources/server/bin/code-server-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/code-server-darwin.sh -------------------------------------------------------------------------------- /resources/server/bin/code-server-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/code-server-linux.sh -------------------------------------------------------------------------------- /resources/server/bin/code-server.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/code-server.cmd -------------------------------------------------------------------------------- /resources/server/bin/helpers/browser-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/helpers/browser-darwin.sh -------------------------------------------------------------------------------- /resources/server/bin/helpers/browser-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/helpers/browser-linux.sh -------------------------------------------------------------------------------- /resources/server/bin/helpers/browser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/helpers/browser.cmd -------------------------------------------------------------------------------- /resources/server/bin/remote-cli/code-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/remote-cli/code-darwin.sh -------------------------------------------------------------------------------- /resources/server/bin/remote-cli/code-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/remote-cli/code-linux.sh -------------------------------------------------------------------------------- /resources/server/bin/remote-cli/code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/remote-cli/code.cmd -------------------------------------------------------------------------------- /resources/server/bin/server-old.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/server-old.cmd -------------------------------------------------------------------------------- /resources/server/bin/server-old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/bin/server-old.sh -------------------------------------------------------------------------------- /resources/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/favicon.ico -------------------------------------------------------------------------------- /resources/server/image/onboarding/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/image/onboarding/checked.svg -------------------------------------------------------------------------------- /resources/server/image/onboarding/unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/image/onboarding/unchecked.svg -------------------------------------------------------------------------------- /resources/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/manifest.json -------------------------------------------------------------------------------- /resources/server/mote-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/mote-192.png -------------------------------------------------------------------------------- /resources/server/mote-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/server/mote-512.png -------------------------------------------------------------------------------- /resources/win32/VisualElementsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/VisualElementsManifest.xml -------------------------------------------------------------------------------- /resources/win32/bin/code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/bin/code.cmd -------------------------------------------------------------------------------- /resources/win32/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/bin/code.sh -------------------------------------------------------------------------------- /resources/win32/bower.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/bower.ico -------------------------------------------------------------------------------- /resources/win32/c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/c.ico -------------------------------------------------------------------------------- /resources/win32/code.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/code.ico -------------------------------------------------------------------------------- /resources/win32/code_150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/code_150x150.png -------------------------------------------------------------------------------- /resources/win32/code_70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/code_70x70.png -------------------------------------------------------------------------------- /resources/win32/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/config.ico -------------------------------------------------------------------------------- /resources/win32/cpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/cpp.ico -------------------------------------------------------------------------------- /resources/win32/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/csharp.ico -------------------------------------------------------------------------------- /resources/win32/css.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/css.ico -------------------------------------------------------------------------------- /resources/win32/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/default.ico -------------------------------------------------------------------------------- /resources/win32/go.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/go.ico -------------------------------------------------------------------------------- /resources/win32/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/html.ico -------------------------------------------------------------------------------- /resources/win32/inno-big-100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-100.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-125.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-150.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-150.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-175.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-175.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-200.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-225.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-225.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-250.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-big-250.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-100.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-125.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-150.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-150.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-175.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-175.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-200.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-225.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-225.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-250.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/inno-small-250.bmp -------------------------------------------------------------------------------- /resources/win32/jade.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/jade.ico -------------------------------------------------------------------------------- /resources/win32/java.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/java.ico -------------------------------------------------------------------------------- /resources/win32/javascript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/javascript.ico -------------------------------------------------------------------------------- /resources/win32/json.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/json.ico -------------------------------------------------------------------------------- /resources/win32/less.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/less.ico -------------------------------------------------------------------------------- /resources/win32/markdown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/markdown.ico -------------------------------------------------------------------------------- /resources/win32/php.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/php.ico -------------------------------------------------------------------------------- /resources/win32/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/powershell.ico -------------------------------------------------------------------------------- /resources/win32/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/python.ico -------------------------------------------------------------------------------- /resources/win32/react.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/react.ico -------------------------------------------------------------------------------- /resources/win32/ruby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/ruby.ico -------------------------------------------------------------------------------- /resources/win32/sass.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/sass.ico -------------------------------------------------------------------------------- /resources/win32/shell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/shell.ico -------------------------------------------------------------------------------- /resources/win32/sql.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/sql.ico -------------------------------------------------------------------------------- /resources/win32/typescript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/typescript.ico -------------------------------------------------------------------------------- /resources/win32/vue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/vue.ico -------------------------------------------------------------------------------- /resources/win32/xml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/xml.ico -------------------------------------------------------------------------------- /resources/win32/yaml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/resources/win32/yaml.ico -------------------------------------------------------------------------------- /scripts/code-cli.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-cli.bat -------------------------------------------------------------------------------- /scripts/code-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-cli.sh -------------------------------------------------------------------------------- /scripts/code-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-server.bat -------------------------------------------------------------------------------- /scripts/code-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-server.js -------------------------------------------------------------------------------- /scripts/code-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-server.sh -------------------------------------------------------------------------------- /scripts/code-web.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code-web.bat -------------------------------------------------------------------------------- /scripts/code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/code.bat -------------------------------------------------------------------------------- /scripts/generate-definitelytyped.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/generate-definitelytyped.sh -------------------------------------------------------------------------------- /scripts/mote-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/mote-web.js -------------------------------------------------------------------------------- /scripts/mote-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/mote-web.sh -------------------------------------------------------------------------------- /scripts/mote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/mote.sh -------------------------------------------------------------------------------- /scripts/node-electron.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/node-electron.bat -------------------------------------------------------------------------------- /scripts/node-electron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/node-electron.sh -------------------------------------------------------------------------------- /scripts/npm.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | yarn %* 3 | -------------------------------------------------------------------------------- /scripts/npm.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | yarn $* 4 | -------------------------------------------------------------------------------- /scripts/test-documentation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-documentation.bat -------------------------------------------------------------------------------- /scripts/test-documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-documentation.sh -------------------------------------------------------------------------------- /scripts/test-integration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-integration.bat -------------------------------------------------------------------------------- /scripts/test-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-integration.sh -------------------------------------------------------------------------------- /scripts/test-remote-integration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-remote-integration.bat -------------------------------------------------------------------------------- /scripts/test-remote-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-remote-integration.sh -------------------------------------------------------------------------------- /scripts/test-web-integration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-web-integration.bat -------------------------------------------------------------------------------- /scripts/test-web-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test-web-integration.sh -------------------------------------------------------------------------------- /scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test.bat -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/update-xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/scripts/update-xterm.js -------------------------------------------------------------------------------- /scripts/update-xterm.ps1: -------------------------------------------------------------------------------- 1 | node $PSScriptRoot\update-xterm.js (Get-Location) 2 | -------------------------------------------------------------------------------- /src/bootstrap-amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/bootstrap-amd.js -------------------------------------------------------------------------------- /src/bootstrap-fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/bootstrap-fork.js -------------------------------------------------------------------------------- /src/bootstrap-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/bootstrap-node.js -------------------------------------------------------------------------------- /src/bootstrap-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/bootstrap-window.js -------------------------------------------------------------------------------- /src/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/bootstrap.js -------------------------------------------------------------------------------- /src/buildfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/buildfile.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mote/app/browser/workbench/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/browser/workbench/callback.html -------------------------------------------------------------------------------- /src/mote/app/browser/workbench/workbench-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/browser/workbench/workbench-dev.html -------------------------------------------------------------------------------- /src/mote/app/browser/workbench/workbench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/browser/workbench/workbench.html -------------------------------------------------------------------------------- /src/mote/app/browser/workbench/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/browser/workbench/workbench.ts -------------------------------------------------------------------------------- /src/mote/app/electron-main/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/electron-main/app.ts -------------------------------------------------------------------------------- /src/mote/app/electron-main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/electron-main/main.ts -------------------------------------------------------------------------------- /src/mote/app/electron-sandbox/workbench/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/electron-sandbox/workbench/index.css -------------------------------------------------------------------------------- /src/mote/app/node/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/node/cli.ts -------------------------------------------------------------------------------- /src/mote/app/node/cliProcessMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/node/cliProcessMain.ts -------------------------------------------------------------------------------- /src/mote/app/react-native/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/app/react-native/app.tsx -------------------------------------------------------------------------------- /src/mote/base/browser/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/broadcast.ts -------------------------------------------------------------------------------- /src/mote/base/browser/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/browser.ts -------------------------------------------------------------------------------- /src/mote/base/browser/canIUse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/canIUse.ts -------------------------------------------------------------------------------- /src/mote/base/browser/contextmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/contextmenu.ts -------------------------------------------------------------------------------- /src/mote/base/browser/defaultWorkerFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/defaultWorkerFactory.ts -------------------------------------------------------------------------------- /src/mote/base/browser/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/dnd.ts -------------------------------------------------------------------------------- /src/mote/base/browser/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/dom.ts -------------------------------------------------------------------------------- /src/mote/base/browser/dompurify/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/dompurify/cgmanifest.json -------------------------------------------------------------------------------- /src/mote/base/browser/dompurify/dompurify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/dompurify/dompurify.d.ts -------------------------------------------------------------------------------- /src/mote/base/browser/dompurify/dompurify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/dompurify/dompurify.js -------------------------------------------------------------------------------- /src/mote/base/browser/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/event.ts -------------------------------------------------------------------------------- /src/mote/base/browser/fastDomNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/fastDomNode.ts -------------------------------------------------------------------------------- /src/mote/base/browser/formattedTextRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/formattedTextRenderer.ts -------------------------------------------------------------------------------- /src/mote/base/browser/globalPointerMoveMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/globalPointerMoveMonitor.ts -------------------------------------------------------------------------------- /src/mote/base/browser/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/hash.ts -------------------------------------------------------------------------------- /src/mote/base/browser/iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/iframe.ts -------------------------------------------------------------------------------- /src/mote/base/browser/indexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/indexedDB.ts -------------------------------------------------------------------------------- /src/mote/base/browser/jsx/createElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/jsx/createElement.ts -------------------------------------------------------------------------------- /src/mote/base/browser/jsx/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/jsx/index.d.ts -------------------------------------------------------------------------------- /src/mote/base/browser/jsx/jsx.ts: -------------------------------------------------------------------------------- 1 | export const Fragment = "<>"; -------------------------------------------------------------------------------- /src/mote/base/browser/jsx/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/jsx/style.ts -------------------------------------------------------------------------------- /src/mote/base/browser/keyboardEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/keyboardEvent.ts -------------------------------------------------------------------------------- /src/mote/base/browser/markdownRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/markdownRenderer.ts -------------------------------------------------------------------------------- /src/mote/base/browser/mouseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/mouseEvent.ts -------------------------------------------------------------------------------- /src/mote/base/browser/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/performance.ts -------------------------------------------------------------------------------- /src/mote/base/browser/prism/prism.all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/prism/prism.all.ts -------------------------------------------------------------------------------- /src/mote/base/browser/prism/prism.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/prism/prism.d.ts -------------------------------------------------------------------------------- /src/mote/base/browser/prism/prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/prism/prism.ts -------------------------------------------------------------------------------- /src/mote/base/browser/touch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/touch.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/actionbar/actionbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/actionbar/actionbar.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/actionbar/actionbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/actionbar/actionbar.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/aria/aria.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/aria/aria.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/aria/aria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/aria/aria.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/button/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/button/button.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/checkbox/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/checkbox/checkbox.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/countBadge/countBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/countBadge/countBadge.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/dialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/dialog/dialog.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/dialog/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/dialog/dialog.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/dropdown/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/dropdown/dropdown.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/dropdown/dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/dropdown/dropdown.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/findinput/findInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/findinput/findInput.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/findinput/findInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/findinput/findInput.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/fonts.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/grid/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/grid/grid.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/grid/gridview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/grid/gridview.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/grid/gridview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/grid/gridview.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/hover/hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/hover/hover.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/hover/hoverWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/hover/hoverWidget.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/icon/svgdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/icon/svgdata.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/icon/svgicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/icon/svgicon.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/iconLabel/iconLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/iconLabel/iconLabel.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/iconLabel/iconLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/iconLabel/iconLabels.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/iconLabel/iconlabel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/iconLabel/iconlabel.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/inputbox/inputBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/inputbox/inputBox.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/inputbox/inputBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/inputbox/inputBox.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/item/itemContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/item/itemContainer.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/list.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/list.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/listPaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/listPaging.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/listView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/listView.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/listWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/listWidget.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/rangeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/rangeMap.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/rowCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/rowCache.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/list/splice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/list/splice.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/menu/menu.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/menu/menubar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/menu/menubar.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/menu/menubar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/menu/menubar.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/menu/quickMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/menu/quickMenu.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/menu/richmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/menu/richmenu.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/sash/sash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/sash/sash.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/sash/sash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/sash/sash.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/selectBox/selectBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/selectBox/selectBox.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/selectBox/selectBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/selectBox/selectBox.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/splitview/paneview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/splitview/paneview.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/splitview/paneview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/splitview/paneview.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/splitview/splitview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/splitview/splitview.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/splitview/splitview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/splitview/splitview.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tab/tabsWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tab/tabsWidget.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/table/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/table/table.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/table/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/table/table.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/table/tableWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/table/tableWidget.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/toggle/toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/toggle/toggle.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/toggle/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/toggle/toggle.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/toolbar/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/toolbar/toolbar.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/toolbar/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/toolbar/toolbar.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/abstractTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/abstractTree.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/asyncDataTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/asyncDataTree.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/dataTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/dataTree.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/indexTreeModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/indexTreeModel.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/media/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/media/tree.css -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/objectTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/objectTree.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/objectTreeModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/objectTreeModel.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/tree/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/tree/tree.ts -------------------------------------------------------------------------------- /src/mote/base/browser/ui/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/browser/ui/widget.ts -------------------------------------------------------------------------------- /src/mote/base/common/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/actions.ts -------------------------------------------------------------------------------- /src/mote/base/common/amd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/amd.ts -------------------------------------------------------------------------------- /src/mote/base/common/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/arrays.ts -------------------------------------------------------------------------------- /src/mote/base/common/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/assert.ts -------------------------------------------------------------------------------- /src/mote/base/common/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/async.ts -------------------------------------------------------------------------------- /src/mote/base/common/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/buffer.ts -------------------------------------------------------------------------------- /src/mote/base/common/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/cache.ts -------------------------------------------------------------------------------- /src/mote/base/common/cancellation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/cancellation.ts -------------------------------------------------------------------------------- /src/mote/base/common/charCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/charCode.ts -------------------------------------------------------------------------------- /src/mote/base/common/codicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/codicons.ts -------------------------------------------------------------------------------- /src/mote/base/common/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/collections.ts -------------------------------------------------------------------------------- /src/mote/base/common/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/color.ts -------------------------------------------------------------------------------- /src/mote/base/common/comparers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/comparers.ts -------------------------------------------------------------------------------- /src/mote/base/common/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/console.ts -------------------------------------------------------------------------------- /src/mote/base/common/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/date.ts -------------------------------------------------------------------------------- /src/mote/base/common/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/decorators.ts -------------------------------------------------------------------------------- /src/mote/base/common/diff/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/diff/diff.ts -------------------------------------------------------------------------------- /src/mote/base/common/diff/diffChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/diff/diffChange.ts -------------------------------------------------------------------------------- /src/mote/base/common/errorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/errorMessage.ts -------------------------------------------------------------------------------- /src/mote/base/common/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/errors.ts -------------------------------------------------------------------------------- /src/mote/base/common/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/event.ts -------------------------------------------------------------------------------- /src/mote/base/common/extpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/extpath.ts -------------------------------------------------------------------------------- /src/mote/base/common/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/filters.ts -------------------------------------------------------------------------------- /src/mote/base/common/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/functional.ts -------------------------------------------------------------------------------- /src/mote/base/common/fuzzyScorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/fuzzyScorer.ts -------------------------------------------------------------------------------- /src/mote/base/common/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/glob.ts -------------------------------------------------------------------------------- /src/mote/base/common/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/hash.ts -------------------------------------------------------------------------------- /src/mote/base/common/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/history.ts -------------------------------------------------------------------------------- /src/mote/base/common/htmlContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/htmlContent.ts -------------------------------------------------------------------------------- /src/mote/base/common/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/i18n.ts -------------------------------------------------------------------------------- /src/mote/base/common/i18n/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/i18n/zh-CN.ts -------------------------------------------------------------------------------- /src/mote/base/common/iconLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/iconLabels.ts -------------------------------------------------------------------------------- /src/mote/base/common/idGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/idGenerator.ts -------------------------------------------------------------------------------- /src/mote/base/common/ime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/ime.ts -------------------------------------------------------------------------------- /src/mote/base/common/iterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/iterator.ts -------------------------------------------------------------------------------- /src/mote/base/common/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/json.ts -------------------------------------------------------------------------------- /src/mote/base/common/jsonEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/jsonEdit.ts -------------------------------------------------------------------------------- /src/mote/base/common/jsonErrorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/jsonErrorMessages.ts -------------------------------------------------------------------------------- /src/mote/base/common/jsonFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/jsonFormatter.ts -------------------------------------------------------------------------------- /src/mote/base/common/jsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/jsonSchema.ts -------------------------------------------------------------------------------- /src/mote/base/common/keyCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/keyCodes.ts -------------------------------------------------------------------------------- /src/mote/base/common/keybindingLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/keybindingLabels.ts -------------------------------------------------------------------------------- /src/mote/base/common/keybindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/keybindings.ts -------------------------------------------------------------------------------- /src/mote/base/common/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/labels.ts -------------------------------------------------------------------------------- /src/mote/base/common/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/lazy.ts -------------------------------------------------------------------------------- /src/mote/base/common/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/lifecycle.ts -------------------------------------------------------------------------------- /src/mote/base/common/linkedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/linkedList.ts -------------------------------------------------------------------------------- /src/mote/base/common/linkedText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/linkedText.ts -------------------------------------------------------------------------------- /src/mote/base/common/lodash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/lodash.ts -------------------------------------------------------------------------------- /src/mote/base/common/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/map.ts -------------------------------------------------------------------------------- /src/mote/base/common/marked/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marked/cgmanifest.json -------------------------------------------------------------------------------- /src/mote/base/common/marked/marked.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marked/marked.d.ts -------------------------------------------------------------------------------- /src/mote/base/common/marked/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marked/marked.js -------------------------------------------------------------------------------- /src/mote/base/common/marked/marked.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marked/marked.license.txt -------------------------------------------------------------------------------- /src/mote/base/common/marshalling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marshalling.ts -------------------------------------------------------------------------------- /src/mote/base/common/marshallingIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/marshallingIds.ts -------------------------------------------------------------------------------- /src/mote/base/common/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/mime.ts -------------------------------------------------------------------------------- /src/mote/base/common/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/navigator.ts -------------------------------------------------------------------------------- /src/mote/base/common/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/network.ts -------------------------------------------------------------------------------- /src/mote/base/common/normalization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/normalization.ts -------------------------------------------------------------------------------- /src/mote/base/common/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/numbers.ts -------------------------------------------------------------------------------- /src/mote/base/common/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/objects.ts -------------------------------------------------------------------------------- /src/mote/base/common/observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observable.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableImpl/autorun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableImpl/autorun.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableImpl/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableImpl/base.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableImpl/derived.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableImpl/derived.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableImpl/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableImpl/logging.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableImpl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableImpl/utils.ts -------------------------------------------------------------------------------- /src/mote/base/common/observableValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/observableValue.ts -------------------------------------------------------------------------------- /src/mote/base/common/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/path.ts -------------------------------------------------------------------------------- /src/mote/base/common/performance.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/performance.d.ts -------------------------------------------------------------------------------- /src/mote/base/common/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/performance.js -------------------------------------------------------------------------------- /src/mote/base/common/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/platform.ts -------------------------------------------------------------------------------- /src/mote/base/common/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/ports.ts -------------------------------------------------------------------------------- /src/mote/base/common/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/process.ts -------------------------------------------------------------------------------- /src/mote/base/common/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/processes.ts -------------------------------------------------------------------------------- /src/mote/base/common/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/product.ts -------------------------------------------------------------------------------- /src/mote/base/common/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/range.ts -------------------------------------------------------------------------------- /src/mote/base/common/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/resources.ts -------------------------------------------------------------------------------- /src/mote/base/common/scrollable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/scrollable.ts -------------------------------------------------------------------------------- /src/mote/base/common/semver/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/semver/cgmanifest.json -------------------------------------------------------------------------------- /src/mote/base/common/semver/semver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/semver/semver.d.ts -------------------------------------------------------------------------------- /src/mote/base/common/semver/semver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/semver/semver.js -------------------------------------------------------------------------------- /src/mote/base/common/sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/sequence.ts -------------------------------------------------------------------------------- /src/mote/base/common/severity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/severity.ts -------------------------------------------------------------------------------- /src/mote/base/common/skipList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/skipList.ts -------------------------------------------------------------------------------- /src/mote/base/common/stopwatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/stopwatch.ts -------------------------------------------------------------------------------- /src/mote/base/common/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/stream.ts -------------------------------------------------------------------------------- /src/mote/base/common/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/strings.ts -------------------------------------------------------------------------------- /src/mote/base/common/stripComments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/stripComments.d.ts -------------------------------------------------------------------------------- /src/mote/base/common/stripComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/stripComments.js -------------------------------------------------------------------------------- /src/mote/base/common/styler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/styler.ts -------------------------------------------------------------------------------- /src/mote/base/common/symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/symbols.ts -------------------------------------------------------------------------------- /src/mote/base/common/ternarySearchTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/ternarySearchTree.ts -------------------------------------------------------------------------------- /src/mote/base/common/themables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/themables.ts -------------------------------------------------------------------------------- /src/mote/base/common/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/themes.ts -------------------------------------------------------------------------------- /src/mote/base/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/types.ts -------------------------------------------------------------------------------- /src/mote/base/common/uint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/uint.ts -------------------------------------------------------------------------------- /src/mote/base/common/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/uri.ts -------------------------------------------------------------------------------- /src/mote/base/common/uriIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/uriIpc.ts -------------------------------------------------------------------------------- /src/mote/base/common/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/uuid.ts -------------------------------------------------------------------------------- /src/mote/base/common/worker/simpleWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/common/worker/simpleWorker.ts -------------------------------------------------------------------------------- /src/mote/base/node/cpuUsage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/cpuUsage.sh -------------------------------------------------------------------------------- /src/mote/base/node/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/crypto.ts -------------------------------------------------------------------------------- /src/mote/base/node/extpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/extpath.ts -------------------------------------------------------------------------------- /src/mote/base/node/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/id.ts -------------------------------------------------------------------------------- /src/mote/base/node/languagePacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/languagePacks.d.ts -------------------------------------------------------------------------------- /src/mote/base/node/languagePacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/languagePacks.js -------------------------------------------------------------------------------- /src/mote/base/node/macAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/macAddress.ts -------------------------------------------------------------------------------- /src/mote/base/node/pfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/pfs.ts -------------------------------------------------------------------------------- /src/mote/base/node/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/ports.ts -------------------------------------------------------------------------------- /src/mote/base/node/powershell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/powershell.ts -------------------------------------------------------------------------------- /src/mote/base/node/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/processes.ts -------------------------------------------------------------------------------- /src/mote/base/node/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/ps.sh -------------------------------------------------------------------------------- /src/mote/base/node/ps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/ps.ts -------------------------------------------------------------------------------- /src/mote/base/node/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/shell.ts -------------------------------------------------------------------------------- /src/mote/base/node/terminalEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/terminalEncoding.ts -------------------------------------------------------------------------------- /src/mote/base/node/terminateProcess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/terminateProcess.sh -------------------------------------------------------------------------------- /src/mote/base/node/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/node/zip.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/browser/ipc.mp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/browser/ipc.mp.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/common/ipc.electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/common/ipc.electron.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/common/ipc.mp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/common/ipc.mp.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/common/ipc.net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/common/ipc.net.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/common/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/common/ipc.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/electron-main/ipc.mp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/electron-main/ipc.mp.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/electron-main/ipcMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/electron-main/ipcMain.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/node/ipc.cp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/node/ipc.cp.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/node/ipc.net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/node/ipc.net.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/test/common/ipc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/test/common/ipc.test.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/test/node/ipc.net.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/test/node/ipc.net.test.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/test/node/testApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/test/node/testApp.ts -------------------------------------------------------------------------------- /src/mote/base/parts/ipc/test/node/testService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/ipc/test/node/testService.ts -------------------------------------------------------------------------------- /src/mote/base/parts/request/common/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/request/common/request.ts -------------------------------------------------------------------------------- /src/mote/base/parts/sandbox/node/electronTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/sandbox/node/electronTypes.ts -------------------------------------------------------------------------------- /src/mote/base/parts/storage/common/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/storage/common/storage.ts -------------------------------------------------------------------------------- /src/mote/base/parts/storage/node/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/parts/storage/node/storage.ts -------------------------------------------------------------------------------- /src/mote/base/test/browser/prism/prism.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/test/browser/prism/prism.test.ts -------------------------------------------------------------------------------- /src/mote/base/test/browser/prism/prismHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/test/browser/prism/prismHelper.ts -------------------------------------------------------------------------------- /src/mote/base/ui/icon/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/base/ui/icon/icon.ts -------------------------------------------------------------------------------- /src/mote/base/ui/list/listView.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/css.build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/css.build.ts -------------------------------------------------------------------------------- /src/mote/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/css.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/command/coreCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/command/coreCommands.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/config/charWidthReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/config/charWidthReader.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/config/domFontInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/config/domFontInfo.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/config/migrateOptions.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/editor/browser/controller/mouseTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/controller/mouseTarget.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/coreCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/coreCommands.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/editorBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/editorBrowser.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/editorDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/editorDom.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/editorExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/editorExtensions.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/editorView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/editorView.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/moteEditorView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/moteEditorView.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/services/openerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/services/openerService.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/textEditorView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/textEditorView.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/textRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/textRenderer.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/view/renderingContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/view/renderingContext.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/view/viewContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/view/viewContext.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/view/viewController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/view/viewController.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/view/viewLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/view/viewLayer.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/view/viewPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/view/viewPart.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/viewLineExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/viewLineExtensions.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/widget/editorWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/widget/editorWidget.ts -------------------------------------------------------------------------------- /src/mote/editor/browser/widget/media/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/browser/widget/media/editor.css -------------------------------------------------------------------------------- /src/mote/editor/common/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/annotation.ts -------------------------------------------------------------------------------- /src/mote/editor/common/blockTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/blockTypes.ts -------------------------------------------------------------------------------- /src/mote/editor/common/commands/replaceCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/commands/replaceCommand.ts -------------------------------------------------------------------------------- /src/mote/editor/common/config/editorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/config/editorOptions.ts -------------------------------------------------------------------------------- /src/mote/editor/common/config/editorZoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/config/editorZoom.ts -------------------------------------------------------------------------------- /src/mote/editor/common/config/fontInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/config/fontInfo.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/cursorColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/cursorColumns.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/dimension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/dimension.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/editOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/editOperation.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/editorRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/editorRange.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/editorSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/editorSelection.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/eolCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/eolCounter.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/position.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/rangeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/rangeUtils.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/segment.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/selectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/selectionUtils.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/stringBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/stringBuilder.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/textChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/textChange.ts -------------------------------------------------------------------------------- /src/mote/editor/common/core/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/core/transaction.ts -------------------------------------------------------------------------------- /src/mote/editor/common/cursor/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/cursor/cursor.ts -------------------------------------------------------------------------------- /src/mote/editor/common/cursor/cursorCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/cursor/cursorCollection.ts -------------------------------------------------------------------------------- /src/mote/editor/common/cursor/cursorContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/cursor/cursorContext.ts -------------------------------------------------------------------------------- /src/mote/editor/common/cursorCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/cursorCommon.ts -------------------------------------------------------------------------------- /src/mote/editor/common/cursorEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/cursorEvents.ts -------------------------------------------------------------------------------- /src/mote/editor/common/diffMatchPatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/diffMatchPatch.ts -------------------------------------------------------------------------------- /src/mote/editor/common/editorAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/editorAction.ts -------------------------------------------------------------------------------- /src/mote/editor/common/editorCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/editorCommon.ts -------------------------------------------------------------------------------- /src/mote/editor/common/editorContextKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/editorContextKeys.ts -------------------------------------------------------------------------------- /src/mote/editor/common/editorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/editorState.ts -------------------------------------------------------------------------------- /src/mote/editor/common/editorTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/editorTheme.ts -------------------------------------------------------------------------------- /src/mote/editor/common/encodedTokenAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/encodedTokenAttributes.ts -------------------------------------------------------------------------------- /src/mote/editor/common/htmlElementUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/htmlElementUtils.ts -------------------------------------------------------------------------------- /src/mote/editor/common/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/languages.ts -------------------------------------------------------------------------------- /src/mote/editor/common/languages/nullTokenize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/languages/nullTokenize.ts -------------------------------------------------------------------------------- /src/mote/editor/common/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/markdown.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/editStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/editStack.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/pieceTreeTextBuffer.ts: -------------------------------------------------------------------------------- 1 | export class PieceTreeTextBuffer { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/mote/editor/common/model/prefixSumComputer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/prefixSumComputer.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/textBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/textBuffer.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/textModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/textModel.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/textModelPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/textModelPart.ts -------------------------------------------------------------------------------- /src/mote/editor/common/model/textModelSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/model/textModelSearch.ts -------------------------------------------------------------------------------- /src/mote/editor/common/modelLineProjectionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/modelLineProjectionData.ts -------------------------------------------------------------------------------- /src/mote/editor/common/repository/blockRepository.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/editor/common/segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/segment.ts -------------------------------------------------------------------------------- /src/mote/editor/common/segmentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/segmentUtils.ts -------------------------------------------------------------------------------- /src/mote/editor/common/services/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/services/model.ts -------------------------------------------------------------------------------- /src/mote/editor/common/services/modelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/services/modelService.ts -------------------------------------------------------------------------------- /src/mote/editor/common/textModelEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/textModelEvents.ts -------------------------------------------------------------------------------- /src/mote/editor/common/textSerialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/textSerialize.ts -------------------------------------------------------------------------------- /src/mote/editor/common/tokenizationRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/tokenizationRegistry.ts -------------------------------------------------------------------------------- /src/mote/editor/common/tokens/lineTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/tokens/lineTokens.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewEventDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewEventDispatcher.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewEventHandler.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewEvents.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewLayout/linePart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewLayout/linePart.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewLayout/linesLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewLayout/linesLayout.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewLayout/viewLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewLayout/viewLayout.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewModel.ts -------------------------------------------------------------------------------- /src/mote/editor/common/viewModel/viewModelImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/common/viewModel/viewModelImpl.ts -------------------------------------------------------------------------------- /src/mote/editor/contrib/inlineCompletions/browser/ghostText.contributiion.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/editor/contrib/slash/browser/menu.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/editor/contrib/slash/browser/slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/contrib/slash/browser/slash.ts -------------------------------------------------------------------------------- /src/mote/editor/editor.all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/editor.all.ts -------------------------------------------------------------------------------- /src/mote/editor/editor.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/editor.main.ts -------------------------------------------------------------------------------- /src/mote/editor/test/common/core/segment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/test/common/core/segment.test.ts -------------------------------------------------------------------------------- /src/mote/editor/test/common/segmentUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/editor/test/common/segmentUtils.test.ts -------------------------------------------------------------------------------- /src/mote/loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/loader.d.ts -------------------------------------------------------------------------------- /src/mote/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/loader.js -------------------------------------------------------------------------------- /src/mote/nls.build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/nls.build.ts -------------------------------------------------------------------------------- /src/mote/nls.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/nls.mock.ts -------------------------------------------------------------------------------- /src/mote/nls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/nls.ts -------------------------------------------------------------------------------- /src/mote/platform/action/common/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/action/common/action.ts -------------------------------------------------------------------------------- /src/mote/platform/actions/browser/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/actions/browser/toolbar.ts -------------------------------------------------------------------------------- /src/mote/platform/actions/common/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/actions/common/actions.ts -------------------------------------------------------------------------------- /src/mote/platform/actions/common/menuService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/actions/common/menuService.ts -------------------------------------------------------------------------------- /src/mote/platform/commands/common/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/commands/common/commands.ts -------------------------------------------------------------------------------- /src/mote/platform/contextkey/common/contextkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/contextkey/common/contextkey.ts -------------------------------------------------------------------------------- /src/mote/platform/dialogs/common/dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/dialogs/common/dialogs.ts -------------------------------------------------------------------------------- /src/mote/platform/download/common/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/download/common/download.ts -------------------------------------------------------------------------------- /src/mote/platform/download/common/downloadIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/download/common/downloadIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/driver/browser/driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/driver/browser/driver.ts -------------------------------------------------------------------------------- /src/mote/platform/driver/common/driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/driver/common/driver.ts -------------------------------------------------------------------------------- /src/mote/platform/editor/common/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/editor/common/editor.ts -------------------------------------------------------------------------------- /src/mote/platform/environment/common/argv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/environment/common/argv.ts -------------------------------------------------------------------------------- /src/mote/platform/environment/node/argv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/environment/node/argv.ts -------------------------------------------------------------------------------- /src/mote/platform/environment/node/argvHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/environment/node/argvHelper.ts -------------------------------------------------------------------------------- /src/mote/platform/environment/node/stdin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/environment/node/stdin.ts -------------------------------------------------------------------------------- /src/mote/platform/environment/node/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/environment/node/wait.ts -------------------------------------------------------------------------------- /src/mote/platform/extensions/common/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/extensions/common/extensions.ts -------------------------------------------------------------------------------- /src/mote/platform/files/common/fileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/common/fileService.ts -------------------------------------------------------------------------------- /src/mote/platform/files/common/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/common/files.ts -------------------------------------------------------------------------------- /src/mote/platform/files/common/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/common/io.ts -------------------------------------------------------------------------------- /src/mote/platform/files/common/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/common/watcher.ts -------------------------------------------------------------------------------- /src/mote/platform/files/node/watcher/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/node/watcher/watcher.ts -------------------------------------------------------------------------------- /src/mote/platform/files/test/common/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/files/test/common/files.test.ts -------------------------------------------------------------------------------- /src/mote/platform/files/test/node/fixtures/service/small.txt: -------------------------------------------------------------------------------- 1 | Small File -------------------------------------------------------------------------------- /src/mote/platform/files/test/node/fixtures/service/small_umlaut.txt: -------------------------------------------------------------------------------- 1 | Small File with Ümlaut -------------------------------------------------------------------------------- /src/mote/platform/files/test/node/fixtures/service/some_utf8_bom.txt: -------------------------------------------------------------------------------- 1 | This is some UTF 8 with BOM file. -------------------------------------------------------------------------------- /src/mote/platform/instantiation/common/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/instantiation/common/graph.ts -------------------------------------------------------------------------------- /src/mote/platform/keybinding/common/keybinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/keybinding/common/keybinding.ts -------------------------------------------------------------------------------- /src/mote/platform/label/common/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/label/common/label.ts -------------------------------------------------------------------------------- /src/mote/platform/layout/browser/layoutService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/layout/browser/layoutService.ts -------------------------------------------------------------------------------- /src/mote/platform/lifecycle/common/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/lifecycle/common/lifecycle.ts -------------------------------------------------------------------------------- /src/mote/platform/list/browser/listService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/list/browser/listService.ts -------------------------------------------------------------------------------- /src/mote/platform/log/browser/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/browser/log.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/bufferLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/bufferLog.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/consoleLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/consoleLog.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/fileLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/fileLog.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/log.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/logIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/logIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/log/common/logService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/common/logService.ts -------------------------------------------------------------------------------- /src/mote/platform/log/electron-main/logIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/electron-main/logIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/log/node/loggerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/node/loggerService.ts -------------------------------------------------------------------------------- /src/mote/platform/log/node/spdlogLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/log/node/spdlogLog.ts -------------------------------------------------------------------------------- /src/mote/platform/menubar/common/menubar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/menubar/common/menubar.ts -------------------------------------------------------------------------------- /src/mote/platform/native/common/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/native/common/native.ts -------------------------------------------------------------------------------- /src/mote/platform/opener/browser/link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/opener/browser/link.css -------------------------------------------------------------------------------- /src/mote/platform/opener/browser/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/opener/browser/link.ts -------------------------------------------------------------------------------- /src/mote/platform/opener/common/opener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/opener/common/opener.ts -------------------------------------------------------------------------------- /src/mote/platform/policy/common/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/policy/common/policy.ts -------------------------------------------------------------------------------- /src/mote/platform/policy/common/policyIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/policy/common/policyIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/product/common/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/product/common/product.ts -------------------------------------------------------------------------------- /src/mote/platform/profiling/common/profiling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/profiling/common/profiling.ts -------------------------------------------------------------------------------- /src/mote/platform/progress/common/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/progress/common/progress.ts -------------------------------------------------------------------------------- /src/mote/platform/quickinput/common/quickInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/quickinput/common/quickInput.ts -------------------------------------------------------------------------------- /src/mote/platform/registry/common/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/registry/common/platform.ts -------------------------------------------------------------------------------- /src/mote/platform/remote/common/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/remote/common/remote.ts -------------------------------------------------------------------------------- /src/mote/platform/remote/common/remoteHosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/remote/common/remoteHosts.ts -------------------------------------------------------------------------------- /src/mote/platform/remote/node/wsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/remote/node/wsl.ts -------------------------------------------------------------------------------- /src/mote/platform/request/common/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/request/common/request.ts -------------------------------------------------------------------------------- /src/mote/platform/request/node/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/request/node/proxy.ts -------------------------------------------------------------------------------- /src/mote/platform/request/node/requestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/request/node/requestService.ts -------------------------------------------------------------------------------- /src/mote/platform/sign/browser/signService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/sign/browser/signService.ts -------------------------------------------------------------------------------- /src/mote/platform/sign/common/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/sign/common/sign.ts -------------------------------------------------------------------------------- /src/mote/platform/sign/node/signService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/sign/node/signService.ts -------------------------------------------------------------------------------- /src/mote/platform/state/electron-main/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/state/electron-main/state.ts -------------------------------------------------------------------------------- /src/mote/platform/state/node/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/state/node/state.ts -------------------------------------------------------------------------------- /src/mote/platform/state/node/stateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/state/node/stateService.ts -------------------------------------------------------------------------------- /src/mote/platform/storage/common/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/storage/common/storage.ts -------------------------------------------------------------------------------- /src/mote/platform/storage/common/storageIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/storage/common/storageIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/blockRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/blockRepository.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/blockStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/blockStore.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/commandFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/commandFacade.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/permissionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/permissionUtils.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/record.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/recordStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/recordStore.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/spaceRootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/spaceRootStore.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/spaceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/spaceStore.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/store.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/storeConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/storeConstant.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/storeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/storeService.ts -------------------------------------------------------------------------------- /src/mote/platform/store/common/storeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/store/common/storeUtils.ts -------------------------------------------------------------------------------- /src/mote/platform/telemetry/common/1dsAppender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/telemetry/common/1dsAppender.ts -------------------------------------------------------------------------------- /src/mote/platform/telemetry/common/gdprTypings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/telemetry/common/gdprTypings.ts -------------------------------------------------------------------------------- /src/mote/platform/telemetry/common/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/telemetry/common/telemetry.ts -------------------------------------------------------------------------------- /src/mote/platform/telemetry/node/1dsAppender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/telemetry/node/1dsAppender.ts -------------------------------------------------------------------------------- /src/mote/platform/telemetry/node/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/telemetry/node/telemetry.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/browser/defaultStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/browser/defaultStyles.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/colorRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/colorRegistry.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/colorTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/colorTheme.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/iconRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/iconRegistry.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/iconTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/iconTheme.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/theme.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/themeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/themeColors.ts -------------------------------------------------------------------------------- /src/mote/platform/theme/common/themeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/theme/common/themeService.ts -------------------------------------------------------------------------------- /src/mote/platform/undoRedo/common/undoRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/undoRedo/common/undoRedo.ts -------------------------------------------------------------------------------- /src/mote/platform/update/common/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/update/common/update.ts -------------------------------------------------------------------------------- /src/mote/platform/update/common/updateIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/update/common/updateIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/upload/common/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/upload/common/upload.ts -------------------------------------------------------------------------------- /src/mote/platform/url/common/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/url/common/url.ts -------------------------------------------------------------------------------- /src/mote/platform/url/common/urlIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/url/common/urlIpc.ts -------------------------------------------------------------------------------- /src/mote/platform/url/common/urlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/url/common/urlService.ts -------------------------------------------------------------------------------- /src/mote/platform/user/common/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/user/common/user.ts -------------------------------------------------------------------------------- /src/mote/platform/window/common/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/window/common/window.ts -------------------------------------------------------------------------------- /src/mote/platform/window/electron-main/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/window/electron-main/window.ts -------------------------------------------------------------------------------- /src/mote/platform/workspace/common/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/workspace/common/workspace.ts -------------------------------------------------------------------------------- /src/mote/platform/workspaces/common/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/platform/workspaces/common/workspaces.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/composite.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/editor.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/layout.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/layoutState.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/workbench/browser/media/part.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/media/part.css -------------------------------------------------------------------------------- /src/mote/workbench/browser/media/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/media/style.css -------------------------------------------------------------------------------- /src/mote/workbench/browser/panecomposite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/panecomposite.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/part.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/part.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/parts/compositeBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/parts/compositeBar.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/parts/compositePart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/parts/compositePart.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/parts/editor/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/parts/editor/editor.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/quickaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/quickaccess.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/style.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/web.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/web.api.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/web.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/web.factory.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/web.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/web.main.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/window.ts -------------------------------------------------------------------------------- /src/mote/workbench/browser/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/browser/workbench.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/actions/spaceActions.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/workbench/common/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/activity.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/component.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/composite.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/contextkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/contextkeys.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/contributions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/contributions.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/dialogs.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/editor.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/editor/editorModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/editor/editorModel.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/editorGroupModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/editorGroupModel.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/editorInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/editorInput.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/logConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/logConstants.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/memento.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/memento.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/notifications.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/panecomposite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/panecomposite.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/theme.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/treeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/treeView.ts -------------------------------------------------------------------------------- /src/mote/workbench/common/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/common/views.ts -------------------------------------------------------------------------------- /src/mote/workbench/contrib/login/browser/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/contrib/login/browser/login.ts -------------------------------------------------------------------------------- /src/mote/workbench/contrib/pages/common/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/contrib/pages/common/files.ts -------------------------------------------------------------------------------- /src/mote/workbench/electron-sandbox/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/electron-sandbox/window.ts -------------------------------------------------------------------------------- /src/mote/workbench/services/files/common/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/services/files/common/files.ts -------------------------------------------------------------------------------- /src/mote/workbench/services/host/browser/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/services/host/browser/host.ts -------------------------------------------------------------------------------- /src/mote/workbench/services/textfile/test/electron-browser/fixtures/small.txt: -------------------------------------------------------------------------------- 1 | Small File -------------------------------------------------------------------------------- /src/mote/workbench/services/textfile/test/electron-browser/fixtures/small_umlaut.txt: -------------------------------------------------------------------------------- 1 | Small File with Ümlaut -------------------------------------------------------------------------------- /src/mote/workbench/services/textfile/test/electron-browser/fixtures/some_utf8_bom.txt: -------------------------------------------------------------------------------- 1 | This is some UTF 8 with BOM file. -------------------------------------------------------------------------------- /src/mote/workbench/services/textfile/test/node/encoding/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mote/workbench/services/user/common/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/services/user/common/user.ts -------------------------------------------------------------------------------- /src/mote/workbench/workbench.common.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.common.main.css -------------------------------------------------------------------------------- /src/mote/workbench/workbench.common.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.common.main.ts -------------------------------------------------------------------------------- /src/mote/workbench/workbench.desktop.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.desktop.main.css -------------------------------------------------------------------------------- /src/mote/workbench/workbench.desktop.main.nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.desktop.main.nls.js -------------------------------------------------------------------------------- /src/mote/workbench/workbench.desktop.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.desktop.main.ts -------------------------------------------------------------------------------- /src/mote/workbench/workbench.web.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.web.main.css -------------------------------------------------------------------------------- /src/mote/workbench/workbench.web.main.nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.web.main.nls.js -------------------------------------------------------------------------------- /src/mote/workbench/workbench.web.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/mote/workbench/workbench.web.main.ts -------------------------------------------------------------------------------- /src/server-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/server-cli.js -------------------------------------------------------------------------------- /src/server-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/server-main.js -------------------------------------------------------------------------------- /src/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.base.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.monaco.json -------------------------------------------------------------------------------- /src/tsconfig.tsec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.tsec.json -------------------------------------------------------------------------------- /src/tsconfig.vscode-dts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.vscode-dts.json -------------------------------------------------------------------------------- /src/tsconfig.vscode-proposed-dts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsconfig.vscode-proposed-dts.json -------------------------------------------------------------------------------- /src/tsec.exemptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/tsec.exemptions.json -------------------------------------------------------------------------------- /src/typings/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/typings/require.d.ts -------------------------------------------------------------------------------- /src/typings/thenable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/typings/thenable.d.ts -------------------------------------------------------------------------------- /src/typings/windows-registry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/src/typings/windows-registry.d.ts -------------------------------------------------------------------------------- /staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/staticwebapp.config.json -------------------------------------------------------------------------------- /test/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/.mocharc.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/README.md -------------------------------------------------------------------------------- /test/automation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/.gitignore -------------------------------------------------------------------------------- /test/automation/.npmignore: -------------------------------------------------------------------------------- 1 | !/out 2 | /src 3 | /tools 4 | .gitignore 5 | tsconfig.json 6 | *.tgz 7 | -------------------------------------------------------------------------------- /test/automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/README.md -------------------------------------------------------------------------------- /test/automation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/package.json -------------------------------------------------------------------------------- /test/automation/src/activityBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/activityBar.ts -------------------------------------------------------------------------------- /test/automation/src/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/application.ts -------------------------------------------------------------------------------- /test/automation/src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/code.ts -------------------------------------------------------------------------------- /test/automation/src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/debug.ts -------------------------------------------------------------------------------- /test/automation/src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/editor.ts -------------------------------------------------------------------------------- /test/automation/src/editors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/editors.ts -------------------------------------------------------------------------------- /test/automation/src/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/electron.ts -------------------------------------------------------------------------------- /test/automation/src/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/explorer.ts -------------------------------------------------------------------------------- /test/automation/src/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/extensions.ts -------------------------------------------------------------------------------- /test/automation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/index.ts -------------------------------------------------------------------------------- /test/automation/src/keybindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/keybindings.ts -------------------------------------------------------------------------------- /test/automation/src/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/localization.ts -------------------------------------------------------------------------------- /test/automation/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/logger.ts -------------------------------------------------------------------------------- /test/automation/src/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/notebook.ts -------------------------------------------------------------------------------- /test/automation/src/peek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/peek.ts -------------------------------------------------------------------------------- /test/automation/src/playwrightBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/playwrightBrowser.ts -------------------------------------------------------------------------------- /test/automation/src/playwrightDriver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/playwrightDriver.ts -------------------------------------------------------------------------------- /test/automation/src/playwrightElectron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/playwrightElectron.ts -------------------------------------------------------------------------------- /test/automation/src/problems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/problems.ts -------------------------------------------------------------------------------- /test/automation/src/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/processes.ts -------------------------------------------------------------------------------- /test/automation/src/quickaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/quickaccess.ts -------------------------------------------------------------------------------- /test/automation/src/quickinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/quickinput.ts -------------------------------------------------------------------------------- /test/automation/src/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/scm.ts -------------------------------------------------------------------------------- /test/automation/src/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/search.ts -------------------------------------------------------------------------------- /test/automation/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/settings.ts -------------------------------------------------------------------------------- /test/automation/src/statusbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/statusbar.ts -------------------------------------------------------------------------------- /test/automation/src/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/terminal.ts -------------------------------------------------------------------------------- /test/automation/src/viewlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/viewlet.ts -------------------------------------------------------------------------------- /test/automation/src/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/src/workbench.ts -------------------------------------------------------------------------------- /test/automation/tools/copy-driver-definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/tools/copy-driver-definition.js -------------------------------------------------------------------------------- /test/automation/tools/copy-package-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/tools/copy-package-version.js -------------------------------------------------------------------------------- /test/automation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/tsconfig.json -------------------------------------------------------------------------------- /test/automation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/automation/yarn.lock -------------------------------------------------------------------------------- /test/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/cgmanifest.json -------------------------------------------------------------------------------- /test/integration/browser/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | Thumbs.db 4 | node_modules/ 5 | out/ 6 | -------------------------------------------------------------------------------- /test/integration/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/browser/README.md -------------------------------------------------------------------------------- /test/integration/browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/browser/package.json -------------------------------------------------------------------------------- /test/integration/browser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/browser/src/index.ts -------------------------------------------------------------------------------- /test/integration/browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/browser/tsconfig.json -------------------------------------------------------------------------------- /test/integration/browser/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/browser/yarn.lock -------------------------------------------------------------------------------- /test/integration/electron/testrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/integration/electron/testrunner.js -------------------------------------------------------------------------------- /test/leaks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/leaks/index.html -------------------------------------------------------------------------------- /test/leaks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/leaks/package.json -------------------------------------------------------------------------------- /test/leaks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/leaks/server.js -------------------------------------------------------------------------------- /test/leaks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/leaks/yarn.lock -------------------------------------------------------------------------------- /test/monaco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/.gitignore -------------------------------------------------------------------------------- /test/monaco/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/.mocharc.json -------------------------------------------------------------------------------- /test/monaco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/README.md -------------------------------------------------------------------------------- /test/monaco/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/core.js -------------------------------------------------------------------------------- /test/monaco/dist/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/dist/core.html -------------------------------------------------------------------------------- /test/monaco/esm-check/esm-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/esm-check/esm-check.js -------------------------------------------------------------------------------- /test/monaco/esm-check/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/esm-check/index.html -------------------------------------------------------------------------------- /test/monaco/esm-check/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/esm-check/index.js -------------------------------------------------------------------------------- /test/monaco/monaco.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/monaco.test.ts -------------------------------------------------------------------------------- /test/monaco/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/package.json -------------------------------------------------------------------------------- /test/monaco/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/runner.js -------------------------------------------------------------------------------- /test/monaco/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/tsconfig.json -------------------------------------------------------------------------------- /test/monaco/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/webpack.config.js -------------------------------------------------------------------------------- /test/monaco/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/monaco/yarn.lock -------------------------------------------------------------------------------- /test/smoke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/.gitignore -------------------------------------------------------------------------------- /test/smoke/Audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/Audit.md -------------------------------------------------------------------------------- /test/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/README.md -------------------------------------------------------------------------------- /test/smoke/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/package.json -------------------------------------------------------------------------------- /test/smoke/src/areas/languages/languages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/areas/languages/languages.test.ts -------------------------------------------------------------------------------- /test/smoke/src/areas/notebook/notebook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/areas/notebook/notebook.test.ts -------------------------------------------------------------------------------- /test/smoke/src/areas/search/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/areas/search/search.test.ts -------------------------------------------------------------------------------- /test/smoke/src/areas/terminal/terminal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/areas/terminal/terminal.test.ts -------------------------------------------------------------------------------- /test/smoke/src/areas/workbench/launch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/areas/workbench/launch.test.ts -------------------------------------------------------------------------------- /test/smoke/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/main.ts -------------------------------------------------------------------------------- /test/smoke/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/src/utils.ts -------------------------------------------------------------------------------- /test/smoke/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/test/index.js -------------------------------------------------------------------------------- /test/smoke/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/tsconfig.json -------------------------------------------------------------------------------- /test/smoke/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/smoke/yarn.lock -------------------------------------------------------------------------------- /test/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/README.md -------------------------------------------------------------------------------- /test/unit/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/assert.js -------------------------------------------------------------------------------- /test/unit/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/browser/index.js -------------------------------------------------------------------------------- /test/unit/browser/renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/browser/renderer.html -------------------------------------------------------------------------------- /test/unit/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/coverage.js -------------------------------------------------------------------------------- /test/unit/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/electron/index.js -------------------------------------------------------------------------------- /test/unit/electron/renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/electron/renderer.html -------------------------------------------------------------------------------- /test/unit/electron/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/electron/renderer.js -------------------------------------------------------------------------------- /test/unit/fullJsonStreamReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/fullJsonStreamReporter.js -------------------------------------------------------------------------------- /test/unit/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/node/index.js -------------------------------------------------------------------------------- /test/unit/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/test/unit/reporter.js -------------------------------------------------------------------------------- /tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/tsfmt.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zurex/mote-ts/HEAD/yarn.lock --------------------------------------------------------------------------------