We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479c304 commit a053114Copy full SHA for a053114
packages/cli-v3/src/utilities/supportsHyperlinks.ts
@@ -29,6 +29,7 @@ function parseVersion(versionString = ""): { major: number; minor: number; patch
29
export function createSupportsHyperlinks(stream: NodeJS.WriteStream): boolean {
30
const {
31
CI,
32
+ CURSOR_TRACE_ID,
33
FORCE_HYPERLINK,
34
NETLIFY,
35
TEAMCITY_VERSION,
@@ -86,6 +87,10 @@ export function createSupportsHyperlinks(stream: NodeJS.WriteStream): boolean {
86
87
return false;
88
}
89
90
+ if (CURSOR_TRACE_ID) {
91
+ return true;
92
+ }
93
+
94
if (TERM_PROGRAM) {
95
const version = parseVersion(TERM_PROGRAM_VERSION);
96
0 commit comments