Skip to content
This repository was archived by the owner on Jan 10, 2019. It is now read-only.

Commit 1391844

Browse files
committed
minor fixes
1 parent 6226db0 commit 1391844

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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"

src/quick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)