language-tools
language-tools copied to clipboard
Can we make urls in tooltip clickable?
This is maybe a particular example where the warning text comes from prisma-fmt and includes a warning, the link is not clickable. (related)
in insiders v31.0.378
Not sure if we have other tooltips with links?
Example schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
type MyString = String @default("A")
model Code {
id String @id
}
First approach might be trying to return a markdown link - would not be surprising if that was picked up.
Indeed, could be the solution here!