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: src/vs/vscode.d.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1714,13 +1714,13 @@ declare module 'vscode' {
1714
1714
1715
1715
/**
1716
1716
* A file glob pattern to match file paths against. This can either be a glob pattern string
1717
-
* (like `**∕*.{ts,js}` or `*.{ts,js}`) or a [relative pattern](#RelativePattern).
1717
+
* (like `**/*.{ts,js}` or `*.{ts,js}`) or a [relative pattern](#RelativePattern).
1718
1718
*
1719
1719
* Glob patterns can have the following syntax:
1720
1720
* * `*` to match one or more characters in a path segment
1721
1721
* * `?` to match on one character in a path segment
1722
1722
* * `**` to match any number of path segments, including none
1723
-
* * `{}` to group conditions (e.g. `**∕*.{ts,js}` matches all TypeScript and JavaScript files)
1723
+
* * `{}` to group conditions (e.g. `**/*.{ts,js}` matches all TypeScript and JavaScript files)
1724
1724
* * `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)
1725
1725
* * `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)
1726
1726
*/
@@ -1732,7 +1732,7 @@ declare module 'vscode' {
1732
1732
* its resource, or a glob-pattern that is applied to the [path](#TextDocument.fileName).
1733
1733
*
1734
1734
* @sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }`
1735
-
* @sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**∕package.json' }`
1735
+
* @sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**/package.json' }`
0 commit comments