Daniel Imms

Results 870 comments of Daniel Imms

> I believe a real fix has to wait until the Buffer re-implementation is done. We need a mechanism to annotate cells and/or cell ranges, which is stable on resize....

Proposal for the API to use this: ```ts export class Terminal { /** * Adds a handler for the ANSI hyperlink escape `\x1b]8;;url\alabel\x1b]8;;`, you should use * this API to...

> The likely consumer of this API would be our renderer that renders the url in a tooltip @mofux I was thinking more like the search addon, the embedder provides...

> Browsers open "unknown" URLs all the time, e.g. when there's a JS code that alters the target just before opening it, often to show a "nice" URL to the...

If someone wants to help out with this, here's what needs to happen: - Figure out how to deal with security implications of having links not showing as URLs, this...

@jerch yeah it would need some parser changes. Resizing wrapped links is a case that we would need to make sure works too.

VS Code now has support for showing detailed hovers for links, so hooking this up to that will solve the problem: ![image](https://user-images.githubusercontent.com/2193314/80717157-5fd52180-8aad-11ea-8262-46c28cc774f6.png) It's a shame it's a bit of a...

Took a shot at this as a weekend project, will probably need another weekend to finish it up 🙂 https://github.com/xtermjs/xterm.js/pull/3904

@litherum do you know of an easy way to test a wkwebview on a macbook?

Yeah we check for "safari" in the user agent right now: https://github.com/xtermjs/xterm.js/issues/3357#issuecomment-993172813 This just needs someone with a device that can verify a fix works for the webkit webview and...