-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.95 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
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
{
"name": "IFDEF-Pathfinder",
"displayName": "IFDEF Pathfinder",
"description": "Show nested conditonal path, highlights and folds #ifdef sections in C/C++ code",
"version": "1.0.0",
"publisher": "Ariel Jacob",
"icon": "Marketing/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Ifdef Highlighter",
"properties": {
"ifdefHighlighter.showDecorations": {
"type": "boolean",
"default": true,
"description": "Toggle decorations for #ifdef sections."
},
"ifdefHighlighter.showFullPath": {
"type": "boolean",
"default": false,
"description": "Show full path in decorations."
}
}
},
"commands": [
{
"command": "extension.collapseAllIfdefs",
"title": "IFDEFs - Collapse All in Page"
},
{
"command": "extension.collapseIfdefsInSection",
"title": "IFDEFs - Collapse All Under This Section"
},
{
"command": "extension.expandAll",
"title": "IFDEFs - Expand All"
}
],
"languages": [
{
"id": "cpp",
"aliases": ["C++", "cpp"],
"extensions": [".cpp", ".cxx", ".hpp", ".hxx"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cpp",
"scopeName": "source.preprocessor",
"path": "./syntaxes/preprocessor.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.60.0",
"typescript": "^4.4.3",
"vscode-test": "^1.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/tanffn/IFDEF-Pathfinder.git"
}
}