Skip to content

Commit 4da2f23

Browse files
committed
gui bare-bones
1 parent cc63f15 commit 4da2f23

14 files changed

+910
-0
lines changed

editors/code/.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
**
2+
!resources/
23
!out/src/main.js
34
!package.json
45
!package-lock.json

editors/code/package.json

+19
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,20 @@
6767
],
6868
"main": "./out/src/main",
6969
"contributes": {
70+
"views": {
71+
"test": [
72+
{
73+
"id": "testExplorer",
74+
"name": "Test Explorer"
75+
}
76+
],
77+
"debug": [
78+
{
79+
"id": "runnableExplorer",
80+
"name": "Runnable Explorer"
81+
}
82+
]
83+
},
7084
"taskDefinitions": [
7185
{
7286
"type": "cargo",
@@ -103,6 +117,11 @@
103117
"title": "Show Syntax Tree",
104118
"category": "Rust Analyzer"
105119
},
120+
{
121+
"command": "rust-analyzer.runnableView",
122+
"title": "Show Runnable View",
123+
"category": "Rust Analyzer"
124+
},
106125
{
107126
"command": "rust-analyzer.expandMacro",
108127
"title": "Expand macro recursively",
Loading

0 commit comments

Comments
 (0)