您好我正在为VSCode开发扩展程序。我正在装饰文本编辑器并悬停一些项目。是否可以在hoverMessage
制作可点击的项目,并根据它修改范围。
扩展名为: https://marketplace.visualstudio.com/items?itemName=serayuzgur.crates
您可以在GIF中看到hoverMessage
答案 0 :(得分:3)
是的,使用markdown,您可以创建a command link,当用户点击它时会执行命令:
import * as vscode from 'vscode';
const myContent = new vscode.MarkdownString('[link](command:myCommand?arg1)');
// Command Uris are disabled by default for security reasons.
// If you set this flag, make sure your content is not constructed
// using untrusted/unsanitized text.
myContent.isTrusted = true;
const myHover = new Hover(myContent);
此命令可以执行您想要的任何操作