mac vscode code-runner无效

1、进入 ~/.vscode/extensions 目录中

open  ~/.vscode/extensions

2、打开目录中 formulahendry.code-runner-0.9.10/out/src/codeManager.js 文件
3、注释下面代码

line 12:
//const micromatch = require("micromatch");
line:225-236
       // if (executor == null) {
        //     const executorMapByGlob = this._config.get("executorMapByGlob");
        //     if (executorMapByGlob) {
        //         const fileBasename = path_1.basename(this._document.fileName);
        //         for (const glob of Object.keys(executorMapByGlob)) {
        //             if (micromatch.isMatch(fileBasename, glob)) {
        //                 executor = executorMapByGlob[glob];
        //                 break;
        //             }
        //         }
        //     }
        // }

4、重启vscode
5、code-runner可正常使用

你可能感兴趣的:(js)