File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ for (const vimHelpDownloadUrl of vimHelpDownloadUrls) {
36
36
console . log ( `Download from ${ vimHelpDownloadUrl } ` ) ;
37
37
}
38
38
const vimHelps = await Promise . all ( vimHelpDownloadUrls . map ( downloadString ) ) ;
39
- const vimDefs = vimHelps . map ( parse ) . flat ( ) ;
39
+ const vimDefs = parse ( vimHelps . join ( "\n" ) ) ;
40
40
const vimOptionSet = new Set ( vimDefs . map ( ( def ) => def . name ) ) . difference (
41
41
manualOptionSet ,
42
42
) ;
@@ -48,7 +48,7 @@ for (const nvimHelpDownloadUrl of nvimHelpDownloadUrls) {
48
48
console . log ( `Download from ${ nvimHelpDownloadUrl } ` ) ;
49
49
}
50
50
const nvimHelps = await Promise . all ( nvimHelpDownloadUrls . map ( downloadString ) ) ;
51
- const nvimDefs = nvimHelps . map ( parse ) . flat ( ) ;
51
+ const nvimDefs = parse ( nvimHelps . join ( "\n" ) ) ;
52
52
const nvimOptionSet = new Set ( nvimDefs . map ( ( def ) => def . name ) ) . difference (
53
53
manualOptionSet ,
54
54
) ;
You can’t perform that action at this time.
0 commit comments