-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Link provider probably needs to change to provide links for entire line #2848
Comments
So it would look something like this? provideLink(bufferLineNumber: number, callback: (link: ILink | undefined) => void): void; |
Yes but multiple returned: provideLinks(bufferLineNumber: number, callback: (links: ILink[] | undefined) => void): void; Also when I was looking into #2849 I noticed that right now in vscode we're using |
I don't really see another way of fixing this problem of competing providers creating different links based on which cell is hovered first, which leads to an inconsistent experience. |
This isn't actually fixed yet, we need to delete links that are "below" higher priority links still. |
Consider the following:
Currently in VS Code, depending on which cell you focus first gives a different link.
Good (validated local link provider):
Bad (word link provider):
fyi @jmbockhorst
The text was updated successfully, but these errors were encountered: