gpt4 book ai didi

visual-studio-code - 在 Visual Studio Code 中更改无标题选项卡的标题

转载 作者:行者123 更新时间:2023-12-04 15:18:27 25 4
gpt4 key购买 nike

我正在构建一个 VS Code 扩展,其中包括更改 untitled-1 的名称/标题选项卡(未保存的文件)。
我尝试在扩展的调试器控制台中运行以下代码,但它没有反射(reflect)在编辑器中:

vscode.workspace.textDocuments[0].fileName="myFile"

这是不可能的还是我错过了什么?

最佳答案

这是不可能的 - 如果您查看 the API definition in vscode.d.ts 的源代码,你会看到 fileName声明为 readonly :

export interface TextDocument {
// ...
readonly fileName: string;
// ...
}

不幸的是,似乎 readonly属性未反射(reflect)在 API docs on the website 中.

关于visual-studio-code - 在 Visual Studio Code 中更改无标题选项卡的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45876887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com