File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 248
248
],
249
249
"description" : " Endpoint of the user account."
250
250
},
251
- "leetcode.outputPath " : {
251
+ "leetcode.outputFolder " : {
252
252
"type" : " string" ,
253
253
"scope" : " application" ,
254
254
"description" : " Specify the relative path to save the problem files."
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ async function showProblemInternal(node: IProblem): Promise<void> {
52
52
}
53
53
54
54
let outDir : string = await selectWorkspaceFolder ( ) ;
55
- let relativePath : string = ( leetCodeConfig . get < string > ( "outputPath " ) || "" ) . trim ( ) ;
55
+ let relativePath : string = ( leetCodeConfig . get < string > ( "outputFolder " ) || "" ) . trim ( ) ;
56
56
const matchResult : RegExpMatchArray | null = relativePath . match ( / \$ \{ ( .* ?) \} / ) ;
57
57
if ( matchResult ) {
58
58
const resolvedPath : string | undefined = await resolveRelativePath ( matchResult [ 1 ] . toLocaleLowerCase ( ) , node , language ) ;
You can’t perform that action at this time.
0 commit comments