0

我正在编写一个应该类似于 Microsoft 的 Live Share 扩展的 Visual Studio Code 扩展。我想从他们的扩展中复制的功能之一是在 VSCode 扩展中为我的查看器添加一个光标,这些光标已连接并在会话中编辑我的代码。

我想添加一个类似的实现:

4

1 回答 1

0

将 设置editor.selections为完整的范围数组:

editor.selections = [ new vscode.Selection(2,0,4,5), new vscode.Selection(5,2,6,0)]
于 2021-12-23T11:34:28.017 回答