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-09manual fixing of prefer-const violationsJohannes
2022-06-09Merge branch 'main' into joh/voluminous-lobsterJohannes
2022-06-09Update text editor drop proposal (#151552)Matt Bierner
This updates the text editor drop proposal (#142990). This change introduces `DocumentDropEdit` which removes the need for `SnippetTextEdit`. This interface may also be extended in the future with additional metadata
2022-06-08Fix rename of paths in markdown reference link definitions (#151545)Matt Bierner
Fixes #151117
2022-06-08Iterate on paste edit provider api (#151477)Matt Bierner
* Iterate on paste edit provider api For #30066 - Pass all selections to paste providers. For #151326 - Introduce `DocumentPasteEdit` as return type. This new type uses an `insertText` that is applied to every paste location (for multicursor), plus an optional additional edit - Add `DocumentPasteProviderMetadata`. This lets extensions tell us which types of mimetypes they are interested in, letting us avoid round trips if no extensions care about the pasted data * Correctly batch insertText
2022-06-08[typescript-language-features] Pass through all `typescript.unstable.*` ↵Andrew Branch
settings (#151472) Pass through all `typescript.unstable.*` settings
2022-06-08[npm extension] exclude top level npm_modules when detecting npm scripts in ↵jram
workspaces (#150205) * Check if current folder is a path that should be excluded * update regex to be an exact match
2022-06-08Switch deprecated editor.document -> editor.notebook (#151530)Rob Lourens
2022-06-08auto-fixed prefer-const violationJohannes
2022-06-08Git - use editor as commit message input (#151491)Ladislau Szomoru
2022-06-08fix jsx text foreground in tomorrow-night theme (#151478)余腾靖
2022-06-08Adopt ResourceMap in more places (#151475)Matt Bierner
This changes switches to use the new `ResourceMap` type in more places in the markdown extension where we need to have a map/set with uris as the key
2022-06-08Add resourceMap helper for markdown extension (#151471)Matt Bierner
This change introduces a `ResoruceMap` map type that is essentially `Map<vscode.Uri, T>` It also fixes a potential race condition with `MdWorkspaceCache` where two quick calls would both trigger init
2022-06-07Fix markdown link detection for links with titles (#151459)Matt Bierner
Fixes #151458
2022-06-07Update grammars (#151383)Matt Bierner
Updates the markdown and JS/TS grammars
2022-06-07Use `I` prefix for task interfaces (#151350)Megan Rogge
2022-06-07Fix test to workRich Chiodo
2022-06-07Can't get tests to run with local bits, try submittingRich Chiodo
2022-06-07Add unit testRich Chiodo
2022-06-06bugfix on markdown underlines, addressing part of issue #136073 (#151178)Justin Chen
Co-authored-by: Justin Chen <t-justinchen@microsoft.com> Co-authored-by: Matt Bierner <matb@microsoft.com>
2022-06-06Enable locale picker in web (#150496)Tyler James Leonhardt
* Enable locale picker in web * fix the test by getting the locale from the loader config
2022-06-03Pick up TS 4.7.3 (#151246)Matt Bierner
Includes minor fixes
2022-06-03Git - Switch to using the remoteName context key (#151212)Ladislau Szomoru
Switch to using the remoteName context key
2022-06-03Validation not working in settings JSON (#151202)Martin Aeschlimann
JSON/HTML/CSS update services
2022-06-02Git - Add minItems/maxItems for branch dictionary setting (#151132)Ladislau Szomoru
Add minItems/maxItems for branch dictionary setting
2022-06-02Fix #150041 (#151108)Logan Ramos
2022-06-02Git - branch name generation setting feedback (#151106)Ladislau Szomoru
2022-06-02Git log level polish (#151095)Ladislau Szomoru
2022-06-02fix github push error handler regex (#151072)Isidor Nikolic
Co-Authored-by: joaomoreno Closes: #148568 Closes: #143083 Closes: #148326
2022-06-02add a comment for session.scopes (#151050)Tyler James Leonhardt
2022-06-02Align auth scopes (#151045)Joyce Er
2022-06-02Add experimental tag to experimental extension settings (#151031)Matt Bierner
This makes a few more extension settings with the `experimental` tag so that show up if you search `@tag:experimental`
2022-06-02Also ignore star checkboxes (#151029)Matt Bierner
Fixes #150672 This makes our md link detection also ignore checkboxes like `* [x]` instead of just `- [x]`
2022-06-02Return scope array that was given to us so that account icon number goes ↵Tyler James Leonhardt
away (#151027)
2022-06-01Better message for markdown reference links (#151018)Matt Bierner
Fixes #151017 Also improves the diagnostic message for invalid reference links to make it clear we are talking about a missing link definition
2022-06-01better approach for codespaces `permissions` dev container schema (#150909)Josh Spicer
2022-06-01Fix #150725 (#150956)Ladislau Szomoru
2022-06-01Don't parse checkboxes are links in markdown (#150914)Matt Bierner
Fixes #150672
2022-06-01Quick spelling update (#150759)Solomon Kinard
https://github.com/Sertion/vscode-gitblame/pull/123
2022-05-31Fix #150595 (#150880)David Dossett
2022-05-30Add customizations.codespaces.repositories.permissions (#150555)Josh Spicer
2022-05-30Update css grammar (#150724)Alex Ross
2022-05-30Add onEnterRule for SassDoc documentation (fix #150598) (#150599)William Killerud
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
2022-05-27Support TS's includeInlayVariableTypeHintsWhenTypeMatchesName setting (#150489)Matt Bierner
From https://github.com/microsoft/TypeScript/pull/48529 Let users control is variable type inlay hints are suppresed if the variable name matches the type name, such as: ```ts const range = new Range(); ```
2022-05-27Revert "A full editor can be used as git commit message editor (#95266)" ↵Ladislau Szomoru
(#150487) This reverts commit 97f8e66d74b7b2d9cefbcb8db8589aa55c0e9cb9.
2022-05-26Fix process.platform for picomatch (#150430)Matt Bierner
The `picomatch` library currently checks `process.platform`. This check fails on web, which causes the markdown extension to not load To fix this, I'm replacing `process.platform` with the string`'web'`
2022-05-25Fix #149831 (#150276)Ladislau Szomoru
2022-05-25Merge branch 'main' into 3wmHenning Dieterichs
# Conflicts: # build/lib/i18n.resources.json
2022-05-25Merge pull request #150300 from rchiodo/rchiodo/iw_output_scrollingRich Chiodo
Fix interactive window to scroll as output resizes
2022-05-25make git "accept from merge editor" command save the document and close the ↵Johannes
merge editor (uses heuristic to identify merge editor tab)