-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "loop-snippets",
"displayName": "Loop Snippets",
"description": "Unique and powerful REPEATABLE SNIPPETS that make you effective",
"publisher": "zardoy",
"version": "0.0.0-dev",
"icon": "resources/icon.png",
"license": "MIT",
"categories": [
"Snippets",
"Other"
],
"contributes": {
"commands": [
{
"command": "insertLoopSnippet",
"title": "Insert Loop Snippet"
},
{
"command": "exitLoopSnippet",
"title": "Exit Loop Snippet"
}
],
"configuration": {
"properties": {
"showExitMarker": {
"type": "boolean",
"description": "Wether to show exit marker position. If disabled you need to exit loop mode manually with command",
"default": true
},
"triggerCompletions": {
"type": "boolean",
"description": "Wether to trigger completinos after loop snippet insert (tab)",
"default": true
},
"useSelectedContentAsSnippet": {
"type": "boolean",
"default": true
},
"selectedContentUseSnippet": {
"type": "boolean",
"default": false
}
}
},
"keybindings": [
{
"command": "loopSnippets.insertLoopSnippet",
"key": "tab",
"when": "editorTextFocus && inLoopSnippet"
},
{
"command": "loopSnippets.exitLoopSnippet",
"key": "escape",
"when": "editorTextFocus && inLoopSnippet && !selectionAnchorSet && !notificationCenterVisible && !parameterHintsVisible && !findWidgetVisible && !isInEmbeddedEditor && !renameInputVisible && !suggestWidgetVisible"
}
]
},
"keywords": [
"Repeat snippet",
"Interactive snippet"
],
"activationEvents": [
"onCommands"
],
"scripts": {
"start": "vscode-framework start"
},
"devDependencies": {
"@types/vscode": "1.71.0",
"@zardoy/tsconfig": "^1.5.0",
"@zardoy/vscode-utils": "^0.0.46",
"typescript": "^4.9.3",
"vscode-framework": "^0.0.18"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 160,
"endOfLine": "auto"
}
}