5

我正在尝试为 VS 代码编写一个简单的扩展,将选择重命名为给定的字符串。该应用程序由扩展生成器引导:https ://code.visualstudio.com/docs/extensions/example-hello-world#_generate-a-new-extension

为此,我使用以下代码:

const editor = vscode.window.activeTextEditor;
    if (!editor) throw Error;

    const position = editor.selection.active
    const uri = editor.document.uri

    vscode.commands.executeCommand("vscode.executeDocumentRenameProvider", uri, position, "donkey")
        .then(edit => {
            if (!edit) throw Error;

            return vscode.workspace.applyEdit(edit);
        });

该命令绑定到键绑定。我使用 F5 启动调试器(启动一个用于调试的 vs 代码实例,如教程中所示:https ://code.visualstudio.com/docs/extensions/example-hello-world#_debugging-your-extension )。然后,我在该调试实例中打开的文件中选择一堆代码,然后按我的键绑定。

但是,在调试控制台中,我得到“拒绝承诺未在 1 秒内处理”。没有抛出错误,因为 executeCommand 是一个 Thenable,而不是一个真正的 Promise,我不能在它上面调用 catch()。

我试图将调用包装在 try/catch 块中,但没有成功。当我尝试做其他事情时,例如使用 vscode.window.showInformationMessage 显示消息或提示用户输入它可以工作,但我没有看到错误。

我也尝试对 Typescript 版本的扩展做同样的事情,但我得到了相同的行为。

我看不出我做错了什么,有什么我遗漏的吗?

4

1 回答 1

5

Thenable.then接受两个参数:成功延续和失败延续。您可以使用失败延续来确保正确处理拒绝:

vscode.commands.executeCommand("vscode.executeDocumentRenameProvider", uri, position, "donkey")
    .then(edit => {
        if (!edit) throw Error;

        return vscode.workspace.applyEdit(edit);
    })
    .then(undefined, err => {
       console.error('I am error');
    })

这样,如果executeCommand,前一个then,或者applyEdit失败,拒绝被正确处理

于 2018-05-01T21:58:52.157 回答