You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ Topics submitted here will be published to the [Visual Studio Code](https://code
9
9
10
10
If you are looking for the VS Code product GitHub repository, you can find it [here](https://github.com/microsoft/vscode).
11
11
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.
Copy file name to clipboardexpand all lines: api/advanced-topics/remote-extensions.md
+6
Original file line number
Diff line number
Diff line change
@@ -202,6 +202,12 @@ export function activate(context: vscode.ExtensionContext) {
202
202
}
203
203
```
204
204
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
+
205
211
### Persisting secrets
206
212
207
213
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.
Copy file name to clipboardexpand all lines: api/extension-capabilities/common-capabilities.md
+23
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,29 @@ There are four options for storing data:
45
45
46
46
The extension context is available to the `activate` function in the [Extension Entry File](/api/get-started/extension-anatomy#extension-entry-file).
47
47
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`.
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
+
48
71
## Display Notifications
49
72
50
73
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:
Copy file name to clipboardexpand all lines: api/extension-guides/file-icon-theme.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ The following properties are supported:
65
65
66
66
### File association
67
67
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).
69
69
70
70
Additionally each of these associations can be refined for 'light' and 'highContrast' color themes.
71
71
@@ -100,17 +100,17 @@ Each file association points to an icon definition.
100
100
}
101
101
```
102
102
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).
104
104
-`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.
105
105
The folder icon is optional. If not set, no icon will be shown for folder.
106
106
-`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.
107
107
-`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.
108
108
-`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.
109
109
-`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.
112
112
-`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.
114
114
115
115
A file extension match is preferred over a language match, but is weaker than a file name match.
Copy file name to clipboardexpand all lines: api/extension-guides/testing.md
+15-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,8 @@
1
1
---
2
+
# DO NOT TOUCH — Managed by doc writer
3
+
ContentId: 4ced0b2a-3f5a-44e6-a8b0-66b9012af8c0
4
+
DateApproved: 8/5/2021
5
+
2
6
# Summarize the whole topic in less than 300 characters for SEO purpose
3
7
MetaDescription: Testing APIs in VS Code allow users to discover and run unit tests in their workspace
4
8
---
@@ -7,6 +11,8 @@ MetaDescription: Testing APIs in VS Code allow users to discover and run unit te
7
11
8
12
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.
9
13
14
+
>**Note**: The Testing API is available in VS Code version 1.59 and higher.
15
+
10
16
## Examples
11
17
12
18
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
22
28
const controller =vscode.tests.createTestController('helloWorldTests', 'Hello World Tests');
23
29
```
24
30
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:
26
32
27
33
```ts
28
34
parseMarkdown(content, {
@@ -275,3 +281,11 @@ In summary, the general steps are:
275
281
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).
276
282
277
283
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)`.
Copy file name to clipboardexpand all lines: api/get-started/extension-anatomy.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ In the last topic, you were able to get a basic extension running. How does it w
13
13
14
14
The `Hello World` extension does 3 things:
15
15
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`.
19
19
20
20
Understanding these three concepts is crucial to writing extensions in VS Code:
21
21
@@ -71,12 +71,12 @@ Each VS Code extension must have a `package.json` as its [Extension Manifest](/a
Copy file name to clipboardexpand all lines: api/references/contribution-points.md
+1
Original file line number
Diff line number
Diff line change
@@ -708,6 +708,7 @@ Currently extension writers can contribute to:
708
708
- The Timeline view title menu bar - `timeline/title`
709
709
- The Timeline view item context menu - `timeline/item/context`
710
710
- The Extensions view context menu - `extension/context`
711
+
- The Test Explorer item context menu - `testing/item/context`
711
712
- Any [contributed submenu](/api/references/contribution-points#contributes.submenus)
712
713
713
714
> **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.
Copy file name to clipboardexpand all lines: api/references/vscode-api.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -802,7 +802,7 @@ mouse, positioning the hover, keeping the hover stable etc. is taken care of by
802
802
}
803
803
});
804
804
</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
806
806
a more complex <a href="#DocumentFilter">filter</a> like <code>{ language: 'typescript', scheme: 'file' }</code>. Matching a document against such
807
807
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
808
808
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
0 commit comments