美文网首页
vsCode-LeetCode-Showproblem-Prob

vsCode-LeetCode-Showproblem-Prob

作者: Zhui_Do | 来源:发表于2019-11-28 15:50 被阅读0次

VSCode安装LeetCode插件,登陆后Show Problem报错
Problem Not Found
https://github.com/leetcode-tools/leetcode-cli/pull/24/files

前往leetCode插件路径修改源码:
/Users/用户名/.vscode/extensions/shengchen.vscode-leetcode-0.12.0/node_modules/vsc-leetcode-cli/lib/core.js

 const metaFid = file.exist(keyword) ? Number(file.meta(keyword).id) : NaN;
    const problem = problems.find(function(x) {
      return x.id === keyword || x.fid === keyword || x.name === keyword || x.slug === keyword || x.fid === metaFid;
    });

重启后生效

相关文章

网友评论

      本文标题:vsCode-LeetCode-Showproblem-Prob

      本文链接:https://www.haomeiwen.com/subject/peubwctx.html