-
-
Notifications
You must be signed in to change notification settings - Fork 724
Display terminal links in cursor #1998
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
479c304
add terminal link as cli module so we can more easily patch it
nicktrn a053114
apply cursor patch
nicktrn c3333ab
add license info
nicktrn 8bc2e33
remove terminal-link package and add deprecation notice
nicktrn 784e151
remove old patch
nicktrn 641ca67
remove terminal-link from sdk
nicktrn 4d62046
changeset
nicktrn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@trigger.dev/sdk": patch | ||
"trigger.dev": patch | ||
--- | ||
|
||
Display clickable links in Cursor terminal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
/* | ||
MIT License | ||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) | ||
Copyright (c) James Talmage <james@talmage.io> (https://github.com/jamestalmage) | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
import { createSupportsColor } from "supports-color"; | ||
import hasFlag from "has-flag"; | ||
|
||
function parseVersion(versionString = ""): { major: number; minor: number; patch: number } { | ||
if (/^\d{3,4}$/.test(versionString)) { | ||
// Env var doesn't always use dots. example: 4601 => 46.1.0 | ||
const match = /(\d{1,2})(\d{2})/.exec(versionString) ?? []; | ||
return { | ||
major: 0, | ||
minor: Number.parseInt(match[1] ?? "0", 10), | ||
patch: Number.parseInt(match[2] ?? "0", 10), | ||
}; | ||
} | ||
|
||
const versions = (versionString ?? "").split(".").map((n) => Number.parseInt(n, 10)); | ||
return { | ||
major: versions[0] ?? 0, | ||
minor: versions[1] ?? 0, | ||
patch: versions[2] ?? 0, | ||
}; | ||
} | ||
|
||
/** | ||
Creates a supports hyperlinks check for a given stream. | ||
|
||
@param stream - Optional stream to check for hyperlink support. | ||
@returns boolean indicating whether hyperlinks are supported. | ||
*/ | ||
export function createSupportsHyperlinks(stream: NodeJS.WriteStream): boolean { | ||
const { | ||
CI, | ||
CURSOR_TRACE_ID, | ||
FORCE_HYPERLINK, | ||
NETLIFY, | ||
TEAMCITY_VERSION, | ||
TERM_PROGRAM, | ||
TERM_PROGRAM_VERSION, | ||
VTE_VERSION, | ||
TERM, | ||
} = process.env; | ||
|
||
if (FORCE_HYPERLINK) { | ||
return !(FORCE_HYPERLINK.length > 0 && Number.parseInt(FORCE_HYPERLINK, 10) === 0); | ||
} | ||
|
||
if ( | ||
hasFlag("no-hyperlink") || | ||
hasFlag("no-hyperlinks") || | ||
hasFlag("hyperlink=false") || | ||
hasFlag("hyperlink=never") | ||
) { | ||
return false; | ||
} | ||
|
||
if (hasFlag("hyperlink=true") || hasFlag("hyperlink=always")) { | ||
return true; | ||
} | ||
|
||
// Netlify does not run a TTY, it does not need `supportsColor` check | ||
if (NETLIFY) { | ||
return true; | ||
} | ||
|
||
// If they specify no colors, they probably don't want hyperlinks. | ||
if (!createSupportsColor(stream)) { | ||
return false; | ||
} | ||
|
||
if (stream && !stream.isTTY) { | ||
return false; | ||
} | ||
|
||
// Windows Terminal | ||
if ("WT_SESSION" in process.env) { | ||
return true; | ||
} | ||
|
||
if (process.platform === "win32") { | ||
return false; | ||
} | ||
|
||
if (CI) { | ||
return false; | ||
} | ||
|
||
if (TEAMCITY_VERSION) { | ||
return false; | ||
} | ||
|
||
if (CURSOR_TRACE_ID) { | ||
return true; | ||
} | ||
|
||
if (TERM_PROGRAM) { | ||
const version = parseVersion(TERM_PROGRAM_VERSION); | ||
|
||
switch (TERM_PROGRAM) { | ||
case "iTerm.app": { | ||
if (version.major === 3) { | ||
return version.minor >= 1; | ||
} | ||
|
||
return version.major > 3; | ||
} | ||
|
||
case "WezTerm": { | ||
return version.major >= 20_200_620; | ||
} | ||
|
||
case "vscode": { | ||
// eslint-disable-next-line no-mixed-operators | ||
return version.major > 1 || (version.major === 1 && version.minor >= 72); | ||
} | ||
|
||
case "ghostty": { | ||
return true; | ||
} | ||
// No default | ||
} | ||
} | ||
|
||
if (VTE_VERSION) { | ||
// 0.50.0 was supposed to support hyperlinks, but throws a segfault | ||
if (VTE_VERSION === "0.50.0") { | ||
return false; | ||
} | ||
|
||
const version = parseVersion(VTE_VERSION); | ||
return version.major > 0 || version.minor >= 50; | ||
} | ||
|
||
switch (TERM) { | ||
case "alacritty": { | ||
// Support added in v0.11 (2022-10-13) | ||
return true; | ||
} | ||
// No default | ||
} | ||
|
||
return false; | ||
} | ||
|
||
/** Object containing hyperlink support status for stdout and stderr. */ | ||
const supportsHyperlinks = { | ||
/** Whether stdout supports hyperlinks. */ | ||
stdout: createSupportsHyperlinks(process.stdout), | ||
/** Whether stderr supports hyperlinks. */ | ||
stderr: createSupportsHyperlinks(process.stderr), | ||
}; | ||
|
||
export default supportsHyperlinks; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
MIT License | ||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
import ansiEscapes from "ansi-escapes"; | ||
import supportsHyperlinks from "./supportsHyperlinks.js"; | ||
|
||
export type TerminalLinkOptions = { | ||
/** | ||
Override the default fallback. If false, the fallback will be disabled. | ||
@default `${text} (${url})` | ||
*/ | ||
readonly fallback?: ((text: string, url: string) => string) | boolean; | ||
}; | ||
|
||
/** | ||
Create a clickable link in the terminal's stdout. | ||
|
||
[Supported terminals.](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda) | ||
For unsupported terminals, the link will be printed in parens after the text: `My website (https://sindresorhus.com)`, | ||
unless the fallback is disabled by setting the `fallback` option to `false`. | ||
|
||
@param text - Text to linkify. | ||
@param url - URL to link to. | ||
|
||
@example | ||
``` | ||
import terminalLink from 'terminal-link'; | ||
|
||
const link = terminalLink('My Website', 'https://sindresorhus.com'); | ||
console.log(link); | ||
``` | ||
|
||
@deprecated The default fallback is broken in some terminals. Please use `cliLink` instead. | ||
*/ | ||
function terminalLink( | ||
text: string, | ||
url: string, | ||
{ target = "stdout", ...options }: { target?: "stdout" | "stderr" } & TerminalLinkOptions = {} | ||
) { | ||
if (!supportsHyperlinks[target]) { | ||
// If the fallback has been explicitly disabled, don't modify the text itself. | ||
if (options.fallback === false) { | ||
return text; | ||
} | ||
|
||
return typeof options.fallback === "function" | ||
? options.fallback(text, url) | ||
: `${text} (\u200B${url}\u200B)`; | ||
} | ||
|
||
return ansiEscapes.link(text, url); | ||
} | ||
/** | ||
Check whether the terminal supports links. | ||
|
||
Prefer just using the default fallback or the `fallback` option whenever possible. | ||
*/ | ||
terminalLink.isSupported = supportsHyperlinks.stdout; | ||
terminalLink.stderr = terminalLinkStderr; | ||
|
||
/** | ||
Create a clickable link in the terminal's stderr. | ||
|
||
[Supported terminals.](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda) | ||
For unsupported terminals, the link will be printed in parens after the text: `My website (https://sindresorhus.com)`. | ||
|
||
@param text - Text to linkify. | ||
@param url - URL to link to. | ||
|
||
@example | ||
``` | ||
import terminalLink from 'terminal-link'; | ||
|
||
const link = terminalLink.stderr('My Website', 'https://sindresorhus.com'); | ||
console.error(link); | ||
``` | ||
*/ | ||
function terminalLinkStderr(text: string, url: string, options: TerminalLinkOptions = {}) { | ||
return terminalLink(text, url, { target: "stderr", ...options }); | ||
} | ||
|
||
/** | ||
Check whether the terminal's stderr supports links. | ||
|
||
Prefer just using the default fallback or the `fallback` option whenever possible. | ||
*/ | ||
terminalLinkStderr.isSupported = supportsHyperlinks.stderr; | ||
|
||
export { terminalLink }; |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.