We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 746d349 commit 3cfe3a3Copy full SHA for 3cfe3a3
2 files changed
CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+## 4.2.0 - 2026-03-14
11
+
12
+### Changed
13
14
+- Adjust hover text for substring vs full path matches (#).
15
16
## 4.1.0 - 2024-04-13
17
18
### Changed
src/codeowners-hover-provider.ts
@@ -42,11 +42,7 @@ export class CodeownersHoverProvider implements vscode.HoverProvider {
42
range,
43
contents: [
44
x,
45
- isPattern
46
- ? "Matches all files with same name"
47
- : isDirectory
48
- ? `Matches all files in directory and subdirectories`
49
- : `Matches path exactly`,
+ isPattern ? "Substring pattern match" : `Matches path exactly`,
50
],
51
}
52
0 commit comments