Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-21storage - rename `GLOBAL` to `APPLICATION` (#152730)Benjamin Pasero
2022-06-21Rename `StorageScope.Global` to `Profile` (#152703)Benjamin Pasero
profile rename
2022-06-15adopt to application storage (#152224)Sandeep Somavarapu
2022-06-15Use `.?method()` in more places (#152112)Matt Bierner
Switches simple patterns like: ```ts if (some.thing) { some.thing.method(); } ``` to: ```ts some.thing?.method() ``` This is more concise and avoids having to repeat the `some.thing` part
2022-06-10Merge branch 'main' into sandy081/settingsProfileSandeep Somavarapu
2022-06-09Merge branch 'main' into sandy081/settingsProfileSandeep Somavarapu
2022-06-08auto-fixed prefer-const violationJohannes
2022-06-02Use `nls.localize` for user facing strings (#151094)Alexandru Dima
Fixes #148535: Use `nls.localize`
2022-05-19move user data resources to user data profileSandeep Somavarapu
2022-05-05add more owner and comment tags, migrate to publicLog2Johannes
2022-03-11Compute affinity for extensions running in a local process extension hostAlex Dima
2022-03-11Reflect in `IExtensionService` methods that there might be multiple local ↵Alex Dima
process extension hosts available for inspection
2022-02-05move Auth types to a better locationTyler Leonhardt
2022-02-04better logging when extension host is being profiledJohannes Rieken
2022-02-04fix issue which causes extension host to be profiled foreverJohannes Rieken
2022-02-02enable `@typescript-eslint/member-delimiter-style`, ↵Johannes Rieken
https://github.com/microsoft/vscode/issues/140391
2022-02-02dispose cancellation token listenersJohannes Rieken
2022-01-24debt - cleanup context key handling in workbenchBenjamin Pasero
2022-01-23#139015 more refactoringsSandeep Somavarapu
- use getExtensions for querying by id or name - introduce getExtensions in IExtensionsWorkbenchService
2022-01-03move things to electron-sandbox, ↵Johannes Rieken
https://github.com/microsoft/vscode/issues/111211
2022-01-03move `v8-inspect-profiler` to shared process and wrap inside ↵Johannes Rieken
`IV8InspectProfilingService`, https://github.com/microsoft/vscode/issues/111211
2021-11-25#15756 sync prereleasesSandeep Somavarapu
2021-11-15#136424 add to proposed apiSandeep Somavarapu
2021-11-12#136424 Initialize remote with user synced extensionsSandeep Somavarapu
2021-09-15editors - drop the `IEditorInput` interfaceBenjamin Pasero
There was a dangerous overlap with `IUntypedEditorInput`
2021-09-03editors - less use of `EditorInput`, more use of `IEditorInput`Benjamin Pasero
2021-07-07editors - more renamesBenjamin Pasero
2021-07-07editor descriptor => editor pane descriptorBenjamin Pasero
2021-06-03dialogs - do not require `buttons` propertyBenjamin Pasero
2021-05-28Fix NPEs caused by extension that is not in the marketplaceAlex Dima
2021-05-25editors - extract input and side by side to own classesBenjamin Pasero
2021-05-21editors - simplify some serialized editor inputBenjamin Pasero
2021-05-06sandbox - more lifting of extensions related management contributionsBenjamin Pasero
2021-05-06sandbox - move some files to electron-sandbox that are readyBenjamin Pasero
2021-04-21async override -> override asyncMatt Bierner
2021-04-08Add override keyword in codebase (#120755)Matt Bierner
For #120675 This uses a script to add the override keyword to places that need it in the codebase Note that we can't enable the --noImplicitOverride setting yet since there are still around 200 errors that require further attention
2020-11-25debt - extensions path is always definedBenjamin Pasero
2020-11-24debt - fix layer break with dependency to v8-inspect-profilerBenjamin Pasero
2020-09-17sandbox - make native workbench environment service a real oneBenjamin Pasero
2020-09-17sandbox - rename electron service => native host serviceBenjamin Pasero
2020-09-16sandbox - avoid direct use of node.js OS moduleBenjamin Pasero
2020-09-04sandbox - lift more services to electron-sandboxBenjamin Pasero