当在文本编辑器中点击一些文本时,会打开一个新的标签页
When some text was click in an TextEdit,then a new tab was opened
我正在开发 VSCode 扩展。我想实现这样一个功能,当在TextEdit中点击一些文本,然后打开一个新的标签页。
您可以为此使用 DocumentLinkProvider
。
This example extension shows how this can be used. You can activate any command as a document link using the command:
uri scheme
我正在开发 VSCode 扩展。我想实现这样一个功能,当在TextEdit中点击一些文本,然后打开一个新的标签页。
您可以为此使用 DocumentLinkProvider
。
This example extension shows how this can be used. You can activate any command as a document link using the command:
uri scheme