This repository was archived by the owner on Jan 10, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " vs-script-commands" ,
33 "displayName" : " Script Commands" ,
44 "description" : " Adds additional commands to Visual Studio Code that uses scripts (JavaScript) for execution." ,
5- "version" : " 4.5.3 " ,
5+ "version" : " 4.5.4 " ,
66 "publisher" : " mkloubert" ,
77 "engines" : {
88 "vscode" : " ^1.6.0"
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ function _generateHelpHTML(): string {
209209 markdown += "| `$execute(scriptPath: string, ...args: any[]): any` | Executes a script ([module](https://mkloubert.github.io/vs-script-commands/interfaces/_quick_.scriptmodule.html)). |\n" ;
210210 markdown += "| `$executeCommand(command: string, ...args: any[]): vscode.Thenable<any>` | Executes a command. |\n" ;
211211 markdown += "| `$exists(path: string): boolean` | Checks if a path exists. |\n" ;
212- markdown += "| `$findFiles(globPattern: string, ignore?: string): string[]` | Finds files using [glob patterns](https://github.com/isaacs/node-glob). |\n" ;
212+ markdown += "| `$findFiles(globPattern: string, ignore?: string[] ): string[]` | Finds files using [glob patterns](https://github.com/isaacs/node-glob). |\n" ;
213213 markdown += "| `$fromMarkdown(markdown: string): string` | Converts [Markdown](https://guides.github.com/features/mastering-markdown/) to HTML. |\n" ;
214214 markdown += "| `$help(): vscode.Thenable<any>` | Shows this help document. |\n" ;
215215 markdown += "| `$htmlEncode(str: string): string` | Encodes the HTML entities in a string. |\n" ;
You can’t perform that action at this time.
0 commit comments