vscode 中的“文件创建”参与者是什么?

问题描述 投票:0回答:1

我尝试在 vscode 的空目录中创建一个

README.md
文件,并收到一条文字:

“正在运行‘文件创建’参与者...”

我必须在一段时间后取消才能看到我的文件。这可能是 vscode 的问题,但这是另一个故事了。

我还在vscode中看到了如下相关设置:

// Timeout in milliseconds after which file participants for create, rename, and delete are cancelled. Use `0` to disable participants.
  "files.participants.timeout": 60000,

我的问题是:什么是参与者?

上面的表达式是否翻译为“运行‘文件创建’事件处理程序”?如果是,“参与者”与处理者有何区别? (或者更接近观察者/听众?)

visual-studio-code event-handling listener
1个回答
0
投票

看起来像“参与者” - 这是另一个人,与您共同编辑同一文档

参见:https://learn.microsoft.com/en-us/visualstudio/liveshare/use/coedit-follow-focus-visual-studio-code

© www.soinside.com 2019 - 2024. All rights reserved.