Lines Matching full:path
1603 * - `*` to match one or more characters in a path segment
1604 * - `?` to match on one character in a path segment
1605 * - `**` to match any number of path segments, including none
1607 * - `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)
1608 * - `[!...]` 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`)
4544 * its resource, or a glob-pattern that is applied to the [path](#TextDocument.fileName).
4547 * - `*` to match one or more characters in a path segment
4548 * - `?` to match on one character in a path segment
4549 * - `**` to match any number of path segments, including none
4551 * - `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)
4552 * - `[!...]` 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`)