Skip to content

Commit 770ca2e

Browse files
author
gregvanl
committed
Merge branch 'main' into vnext
2 parents 0438b4c + 0ca6c06 commit 770ca2e

File tree

177 files changed

+883
-1246
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+883
-1246
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Topics submitted here will be published to the [Visual Studio Code](https://code
99

1010
If you are looking for the VS Code product GitHub repository, you can find it [here](https://github.com/microsoft/vscode).
1111

12+
>**Note**: The vscode-docs repository uses [Git LFS](https://git-lfs.github.com/) (Large File Storage) for storing binary files such as images and `.gif`s. If you are contributing or updating images, please enable Git LFS per the instructions in the [Contributing](#cloning) section below.
13+
1214
## Index
1315

1416
- [Index](#index)

api/advanced-topics/remote-extensions.md

+6
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ export function activate(context: vscode.ExtensionContext) {
202202
}
203203
```
204204

205+
### Sync user global state between machines
206+
207+
If your extension needs to preserve some user state across different machines then provide the state to [Settings Sync](/docs/editor/settings-sync) using `vscode.ExtensionContext.globalState.setKeysForSync`. This can help prevent displaying the same welcome or updates page to users on multiple machines.
208+
209+
There is an example of using `setKeysforSync` in the [Extension Capabilities](/api/extension-capabilities/common-capabilities#data-storage) topic.
210+
205211
### Persisting secrets
206212

207213
If your extension needs to persist passwords or other secrets, you may want to use your local operating system's secret store (Windows Cert Store, the macOS KeyChain, a `libsecret`-based keyring on Linux, or a browser-based equivalent) rather than the one on the remote machine environment. Further, on Linux you may be relying on `libsecret` and by extension `gnome-keyring` to store your secrets, and this does not typically work well on server distros or in a container.

api/extension-capabilities/common-capabilities.md

+23
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,29 @@ There are four options for storing data:
4545

4646
The extension context is available to the `activate` function in the [Extension Entry File](/api/get-started/extension-anatomy#extension-entry-file).
4747

48+
### setKeysForSync example
49+
50+
If your extension needs to preserve some user state across different machines then provide the state to [Setting Sync](/docs/editor/settings-sync) using `vscode.ExtensionContext.globalState.setKeysForSync`.
51+
52+
You can use the following pattern:
53+
54+
```TypeScript
55+
// on activate
56+
const versionKey = context.extension.id + '.version';
57+
context.globalState.setKeysForSync([versionKey]);
58+
59+
// later on show page
60+
const currentVersion = context.extension.packageJSON.version;
61+
const lastVersionShown = context.globalState.get(versionKey);
62+
if (!isHigher(currentVersion, lastVersionShown)) {
63+
return;
64+
}
65+
context.globalState.set(versionKey, currentVersion);
66+
// show page
67+
```
68+
69+
Sharing state across machines can help avoid the problem of users seeing multiple instances of a welcome or update page, by sharing dismissed or viewed flags.
70+
4871
## Display Notifications
4972

5073
Almost all extensions need to present information to the user at some point. VS Code offers three APIs for displaying notification messages of different severity:

api/extension-guides/file-icon-theme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The following properties are supported:
6565

6666
### File association
6767

68-
Icons can be associated to folders, folder names, files, file extensions, file names and [language ids](/api/references/contribution-points#contributes.languages).
68+
Icons can be associated to folders, folder names, files, file extensions, file names and [language IDs](/api/references/contribution-points#contributes.languages).
6969

7070
Additionally each of these associations can be refined for 'light' and 'highContrast' color themes.
7171

@@ -100,17 +100,17 @@ Each file association points to an icon definition.
100100
}
101101
```
102102

103-
- `file` is the default file icon, shown for all files that don't match any extension, filename or language id. Currently all properties defined by the definition of the file icon will be inherited (only relevant for font glyphs, useful for the fontSize).
103+
- `file` is the default file icon, shown for all files that don't match any extension, filename or language ID. Currently all properties defined by the definition of the file icon will be inherited (only relevant for font glyphs, useful for the fontSize).
104104
- `folder` is the folder icon for collapsed folders, and if `folderExpanded` is not set, also for expanded folders. Icons for specific folder names can be associated using the `folderNames` property.
105105
The folder icon is optional. If not set, no icon will be shown for folder.
106106
- `folderExpanded` is the folder icon for expanded folders. The expanded folder icon is optional. If not set, the icon defined for `folder` will be shown.
107107
- `folderNames` associates folder names to icons. The key of the set is the folder name, not including any path segments. Patterns or wildcards are not supported. Folder name matching is case insensitive.
108108
- `folderNamesExpanded` associates folder names to icons for expanded folder. The key of the set is the folder name, not including any path segments. Patterns or wildcards are not supported. Folder name matching is case insensitive.
109109
- `rootFolder` is the folder icon for collapsed workspace root folders , and if `rootFolderExpanded` is not set, also for expanded workspace root folders. If not set, the icon defined for `folder` will be shown for workspace root folders.
110-
- `rootFolderExpanded` is the folder icon for expanded workspace root folders. If not set, the icon defined for `rootFolder` will be shown for exanded workspace root folders.
111-
- `languageIds` associates languages to icons. The key in the set is the language id as defined in the [language contribution point](/api/references/contribution-points#contributes.languages). The language of a file is evaluated based on the file extensions and file names as defined in the language contribution. Note that the 'first line match' of the language contribution is not considered.
110+
- `rootFolderExpanded` is the folder icon for expanded workspace root folders. If not set, the icon defined for `rootFolder` will be shown for expanded workspace root folders.
111+
- `languageIds` associates languages to icons. The key in the set is the language ID as defined in the [language contribution point](/api/references/contribution-points#contributes.languages). The language of a file is evaluated based on the file extensions and file names as defined in the language contribution. Note that the 'first line match' of the language contribution is not considered.
112112
- `fileExtensions` associates file extensions to icons. The key in the set is the file extension name. The extension name is a file name segment after a dot (not including the dot). File names with multiple dots such as `lib.d.ts` can match multiple extensions; 'd.ts' and 'ts'. Extensions are compared case insensitive.
113-
- `fileNames` associates file names to icons. The key in the set is the full file name, not including any path segments. Patterns or wildcards are not supported. File name matching is case insensitive. A 'fileName' match is the strongest match, and the icon associated to the file name will be preferred over an icon of a matching fileExtension and also of a matching language Id.
113+
- `fileNames` associates file names to icons. The key in the set is the full file name, not including any path segments. Patterns or wildcards are not supported. File name matching is case insensitive. A 'fileName' match is the strongest match, and the icon associated to the file name will be preferred over an icon of a matching fileExtension and also of a matching language ID.
114114

115115
A file extension match is preferred over a language match, but is weaker than a file name match.
116116

api/extension-guides/testing.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
---
2+
# DO NOT TOUCH — Managed by doc writer
3+
ContentId: 4ced0b2a-3f5a-44e6-a8b0-66b9012af8c0
4+
DateApproved: 8/5/2021
5+
26
# Summarize the whole topic in less than 300 characters for SEO purpose
37
MetaDescription: Testing APIs in VS Code allow users to discover and run unit tests in their workspace
48
---
@@ -7,6 +11,8 @@ MetaDescription: Testing APIs in VS Code allow users to discover and run unit te
711

812
The Testing API allows Visual Studio Code extensions to discover tests in the workspace and publish results. Users can execute tests in the Test Explorer view, from decorations, and inside commands. With these new APIs, Visual Studio Code supports richer displays of outputs and diffs than was previously possible.
913

14+
>**Note**: The Testing API is available in VS Code version 1.59 and higher.
15+
1016
## Examples
1117

1218
There are two test providers maintained by the VS Code team:
@@ -22,7 +28,7 @@ Tests are provided by the `TestController`, which requires a globally unique ID
2228
const controller = vscode.tests.createTestController('helloWorldTests', 'Hello World Tests');
2329
```
2430

25-
To publish tests, you add `TestITem`s as children to the controller's `items` collection. `TestItem`s are the foundation of the test API in the `TestItem` interface, and are a generic type that can describe a test case, suite, or tree item as it exists in code. They can, in turn, have `children` themselves, forming a hierarchy. For example, here's a simplified version of how the sample test extension creates tests:
31+
To publish tests, you add `TestItem`s as children to the controller's `items` collection. `TestItem`s are the foundation of the test API in the `TestItem` interface, and are a generic type that can describe a test case, suite, or tree item as it exists in code. They can, in turn, have `children` themselves, forming a hierarchy. For example, here's a simplified version of how the sample test extension creates tests:
2632

2733
```ts
2834
parseMarkdown(content, {
@@ -275,3 +281,11 @@ In summary, the general steps are:
275281
1. To load tests initially, instead of waiting for a `testAdapter.load()` method call, set `controller.resolveHandler = () => { /* discover tests */ }`. See more information around how test discovery works in [Discovering Tests](#discovering-tests).
276282

277283
1. To run tests, you should create a [Run Profile](#running-tests) with a handler function that calls `const run = controller.createTestRun(request)`. Instead of firing a `testStates` event, pass `TestItem`s to methods on the `run` to update their state.
284+
285+
## Additional Contribution Points
286+
287+
The `testing/item/context` [menu contribution point](/api/references/contribution-points#contributes.menus) may be used to add menu items to Tests in the Test Explorer view. Place menu items in the `inline` group to have them inline. All other menu item groups will be represented in a context menu usually accessible using the mouse right-click.
288+
289+
Additional [context keys](/api/references/when-clause-contexts) are available in the `when` clauses of your menu items: `testId`, `controllerId`, and `testItemHasUri`. For more complex `when` scenarios where you want actions to be optionally available for different Test Items, consider using the [`in` conditional operator](/api/references/when-clause-contexts#in-conditional-operator).
290+
291+
If want to reveal a test in the explorer, you can pass it running the command `vscode.commands.runCommand('vscode.revealTestInExplorer', testId)`.

api/get-started/extension-anatomy.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ In the last topic, you were able to get a basic extension running. How does it w
1313

1414
The `Hello World` extension does 3 things:
1515

16-
- Registers the [`onCommand`](/api/references/activation-events#onCommand) [**Activation Event**](/api/references/activation-events): `onCommand:extension.helloWorld`, so the extension becomes activated when user runs the `Hello World` command.
17-
- Uses the [`contributes.commands`](/api/references/contribution-points#contributes.commands) [**Contribution Point**](/api/references/contribution-points) to make the command `Hello World` available in the Command Palette, and bind it to a command ID `extension.helloWorld`.
18-
- Uses the [`commands.registerCommand`](/api/references/vscode-api#commands.registerCommand) [**VS Code API**](/api/references/vscode-api) to bind a function to the registered command ID `extension.helloWorld`.
16+
- Registers the [`onCommand`](/api/references/activation-events#onCommand) [**Activation Event**](/api/references/activation-events): `onCommand:helloworld.helloWorld`, so the extension becomes activated when user runs the `Hello World` command.
17+
- Uses the [`contributes.commands`](/api/references/contribution-points#contributes.commands) [**Contribution Point**](/api/references/contribution-points) to make the command `Hello World` available in the Command Palette, and bind it to a command ID `helloworld.helloWorld`.
18+
- Uses the [`commands.registerCommand`](/api/references/vscode-api#commands.registerCommand) [**VS Code API**](/api/references/vscode-api) to bind a function to the registered command ID `helloworld.helloWorld`.
1919

2020
Understanding these three concepts is crucial to writing extensions in VS Code:
2121

@@ -71,12 +71,12 @@ Each VS Code extension must have a `package.json` as its [Extension Manifest](/a
7171
"vscode": "^1.51.0"
7272
},
7373
"categories": ["Other"],
74-
"activationEvents": ["onCommand:extension.helloWorld"],
74+
"activationEvents": ["onCommand:helloworld.helloWorld"],
7575
"main": "./out/extension.js",
7676
"contributes": {
7777
"commands": [
7878
{
79-
"command": "extension.helloWorld",
79+
"command": "helloworld.helloWorld",
8080
"title": "Hello World"
8181
}
8282
]
@@ -116,7 +116,7 @@ export function activate(context: vscode.ExtensionContext) {
116116
// The command has been defined in the package.json file
117117
// Now provide the implementation of the command with registerCommand
118118
// The commandId parameter must match the command field in package.json
119-
let disposable = vscode.commands.registerCommand('extension.helloWorld', () => {
119+
let disposable = vscode.commands.registerCommand('helloworld.helloWorld', () => {
120120
// The code you place here will be executed every time your command is executed
121121

122122
// Display a message box to the user

api/language-extensions/syntax-highlight-guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ To quickly create a new grammar extension, use [VS Code's Yeoman templates](/api
180180

181181
Yeoman will walk you through some basic questions to scaffold the new extension. The important questions for creating a new grammar are:
182182

183-
- `Language Id` - A unique identifier for your language.
184-
- `Language Name` - A human readable name for your language.
185-
- `Scope names` - Root TextMate scope name for your grammar
183+
- `Language id` - A unique identifier for your language.
184+
- `Language name` - A human readable name for your language.
185+
- `Scope names` - Root TextMate scope name for your grammar.
186186

187187
![Filling in the 'new language' questions](images/syntax-highlighting/yo-new-language-questions.png)
188188

api/references/contribution-points.md

+1
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ Currently extension writers can contribute to:
708708
- The Timeline view title menu bar - `timeline/title`
709709
- The Timeline view item context menu - `timeline/item/context`
710710
- The Extensions view context menu - `extension/context`
711+
- The Test Explorer item context menu - `testing/item/context`
711712
- Any [contributed submenu](/api/references/contribution-points#contributes.submenus)
712713

713714
> **Note:** When a command is invoked from a (context) menu, VS Code tries to infer the currently selected resource and passes that as a parameter when invoking the command. For instance, a menu item inside the Explorer is passed the URI of the selected resource and a menu item inside an editor is passed the URI of the document.

api/references/extension-manifest.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Here is a complete `package.json`
5555
"publisher": "ms-vscode",
5656
"description": "Markdown Word Count Example - reports out the number of words in a Markdown file.",
5757
"author": {
58-
"name": "seanmcbreen"
58+
"name": "sean"
5959
},
6060
"categories": ["Other"],
6161
"icon": "images/icon.png",
@@ -79,7 +79,7 @@ Here is a complete `package.json`
7979
"license": "SEE LICENSE IN LICENSE.txt",
8080
"bugs": {
8181
"url": "https://github.com/microsoft/vscode-wordcount/issues",
82-
"email": "smcbreen@microsoft.com"
82+
"email": "sean@contoso.com"
8383
},
8484
"repository": {
8585
"type": "git",
@@ -129,7 +129,7 @@ There are several optional links (`bugs`, `homepage`, `repository`) you can set
129129
"homepage": "https://github.com/microsoft/vscode-wordcount/blob/main/README.md",
130130
"bugs": {
131131
"url": "https://github.com/microsoft/vscode-wordcount/issues",
132-
"email": "smcbreen@microsoft.com"
132+
"email": "sean@contoso.com"
133133
},
134134
"repository": {
135135
"type": "git",

api/references/vscode-api.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ mouse, positioning the hover, keeping the hover stable etc. is taken care of by
802802
}
803803
});
804804
</code></pre>
805-
<p>Registration is done using a <a href="#DocumentSelector">document selector</a> which is either a language id, like <code>javascript</code> or
805+
<p>Registration is done using a <a href="#DocumentSelector">document selector</a> which is either a language ID, like <code>javascript</code> or
806806
a more complex <a href="#DocumentFilter">filter</a> like <code>{ language: &#39;typescript&#39;, scheme: &#39;file&#39; }</code>. Matching a document against such
807807
a selector will result in a <a href="#languages.match">score</a> that is used to determine if and how a provider shall be used. When
808808
scores are equal the provider that came last wins. For features that allow full arity, like <a href="#languages.registerHoverProvider">hover</a>,
@@ -3031,7 +3031,7 @@ when the <a href="#TextDocument.getText">contents</a> changes but also when othe
30313031

30323032
<a name="workspace.onDidCloseTextDocument"></a><span class="ts" id=2970 data-target="#details-2970" data-toggle="collapse"><span class="ident">onDidCloseTextDocument</span><span>: </span><a class="type-ref" href="#Event">Event</a>&lt;<a class="type-ref" href="#TextDocument">TextDocument</a>&gt;</span>
30333033
<div class="details collapse" id="details-2970">
3034-
<div class="comment"><p>An event that is emitted when a <a href="#TextDocument">text document</a> is disposed or when the language id
3034+
<div class="comment"><p>An event that is emitted when a <a href="#TextDocument">text document</a> is disposed or when the language ID
30353035
of a text document <a href="#languages.setTextDocumentLanguage">has been changed</a>.</p>
30363036
<p><em>Note 1:</em> There is no guarantee that this event fires when an editor tab is closed, use the
30373037
<a href="#window.onDidChangeVisibleTextEditors"><code>onDidChangeVisibleTextEditors</code></a>-event to know when editors change.</p>
@@ -3069,7 +3069,7 @@ files change on disk, e.g triggered by another application, or when using the
30693069

30703070
<a name="workspace.onDidOpenTextDocument"></a><span class="ts" id=2969 data-target="#details-2969" data-toggle="collapse"><span class="ident">onDidOpenTextDocument</span><span>: </span><a class="type-ref" href="#Event">Event</a>&lt;<a class="type-ref" href="#TextDocument">TextDocument</a>&gt;</span>
30713071
<div class="details collapse" id="details-2969">
3072-
<div class="comment"><p>An event that is emitted when a <a href="#TextDocument">text document</a> is opened or when the language id
3072+
<div class="comment"><p>An event that is emitted when a <a href="#TextDocument">text document</a> is opened or when the language ID
30733073
of a text document <a href="#languages.setTextDocumentLanguage">has been changed</a>.</p>
30743074
<p>To add an event listener when a visible text document is opened, use the <a href="#TextEditor">TextEditor</a> events in the
30753075
<a href="#window">window</a> namespace. Note that:</p>
@@ -8566,7 +8566,7 @@ its resource, or a glob-pattern that is applied to the <a href="#TextDocument.fi
85668566

85678567
<a name="DocumentFilter.language"></a><span class="ts" id=557 data-target="#details-557" data-toggle="collapse"><span class="ident">language</span><span>?</span><span>: </span><a class="type-intrinsic">string</a></span>
85688568
<div class="details collapse" id="details-557">
8569-
<div class="comment"><p>A language id, like <code>typescript</code>.</p>
8569+
<div class="comment"><p>A language ID, like <code>typescript</code>.</p>
85708570
</div>
85718571
</div>
85728572

@@ -20907,7 +20907,7 @@ const values = config.get(&#39;configurations&#39;);
2090720907
often consists of a <em>default</em> value, a global or installation-wide value,
2090820908
a workspace-specific value, folder-specific value
2090920909
and language-specific values (if <a href="#WorkspaceConfiguration">WorkspaceConfiguration</a> is scoped to a language).</p>
20910-
<p>Also provides all language ids under which the given configuration setting is defined.</p>
20910+
<p>Also provides all language IDs under which the given configuration setting is defined.</p>
2091120911
<p><em>Note:</em> The configuration name must denote a leaf in the configuration tree
2091220912
(<code>editor.fontSize</code> vs <code>editor</code>) otherwise no result is returned.</p>
2091320913
</div>

0 commit comments

Comments
 (0)