Skip to content

Commit edae380

Browse files
committed
Adjust schema quick panel items
Render quick panel items the same way as VS Code extension does.
1 parent ce48139 commit edae380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ def prompt(self, session: Session, response: dict) -> None:
253253
items=[
254254
sublime.QuickPanelItem(
255255
trigger=schema["meta"]["name"],
256-
annotation=schema["meta"]["source"],
257-
details=schema["meta"]["description"],
256+
annotation=schema["meta"]["description"],
257+
details=schema["url"],
258258
)
259259
for schema in response["schemas"]
260260
],

0 commit comments

Comments
 (0)