-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "asciicomment-extension",
"displayName": "AsciiComment Extension",
"description": "Convert current line of text to ASCII art comments",
"version": "1.2.0",
"publisher": "xmxstudio",
"icon": "dark-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/xmxstudio/AsciiComment.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": ["Other"],
"activationEvents": ["onCommand:asciiArtConvert"],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.asciiArtConvert",
"title": "Convert to AsciiComment",
"category": "Edit"
}
],
"keybindings": [
{
"command": "extension.asciiArtConvert",
"key": "ctrl+shift+/",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "AsciiComment",
"properties": {
"asciicomment.asciiArtCommand": {
"type": "string",
"default": "echo \"${currentLine}\" | toilet -F border -f future",
"description": "The command used to generate ASCII art"
}
}
}
}
}