File tree 1 file changed +2
-2
lines changed
src/client/workspaceSymbols
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class Generator implements vscode.Disposable {
19
19
this . disposables . forEach ( d => d . dispose ( ) ) ;
20
20
}
21
21
22
- private buildCmdArgsg ( ) : string [ ] {
22
+ private buildCmdArgs ( ) : string [ ] {
23
23
const optionsFile = this . optionsFile . indexOf ( ' ' ) > 0 ? `"${ this . optionsFile } "` : this . optionsFile ;
24
24
const exclusions = pythonSettings . workspaceSymbols . exclusionPatterns ;
25
25
const excludes = exclusions . length === 0 ? [ ] : exclusions . map ( pattern => `--exclude=${ pattern } ` ) ;
@@ -34,7 +34,7 @@ export class Generator implements vscode.Disposable {
34
34
35
35
private generateTags ( outputFile : string , source : { directory ?: string , file ?: string } ) : Promise < any > {
36
36
const cmd = pythonSettings . workspaceSymbols . ctagsPath ;
37
- const args = this . buildCmdArgsg ( ) ;
37
+ const args = this . buildCmdArgs ( ) ;
38
38
if ( source . file && source . file . length > 0 ) {
39
39
source . directory = path . dirname ( source . file ) ;
40
40
}
You can’t perform that action at this time.
0 commit comments