You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The registerLinkMatcher() should support returning the row and column position of the link so it can be used for position the hover message. Related to microsoft/vscode#77964.
For VSCode, I believe this is needed in order to match the terminal link experience (the popup starts where the link starts) to the rest of the editor. Currently, there is no way to get the position of the link, and the hover position is just the mouse position, which is inconsistent.
The text was updated successfully, but these errors were encountered:
// This is just `ISelectionPosition` but we're interested in the viewport only, not whole bufferexportinterfaceILinkLocation{startColumn: number;startRow: number;endColumn: number;endRow: number;}exportinterfaceILinkMatcherOptions{tooltipCallback?: (event: MouseEvent,uri: string,ILinkLocation)=>boolean|void;}
Coupled with the ability to get the dimensions of the cells from #702, this would let us expose this information without getting into pixel coordinates (which get complicated as they could be relative to different things).
The registerLinkMatcher() should support returning the row and column position of the link so it can be used for position the hover message. Related to microsoft/vscode#77964.
For VSCode, I believe this is needed in order to match the terminal link experience (the popup starts where the link starts) to the rest of the editor. Currently, there is no way to get the position of the link, and the hover position is just the mouse position, which is inconsistent.
The text was updated successfully, but these errors were encountered: