Skip to content

Commit a80af7b

Browse files
committed
Replace custom graphics with updated Codicon library
These look more like the rest of Code since they're built-in.
1 parent 1f924d1 commit a80af7b

File tree

12 files changed

+6
-266
lines changed

12 files changed

+6
-266
lines changed

media/pwsh.svg

-4
This file was deleted.

media/resources/dark/pencil.svg

-56
This file was deleted.

media/resources/dark/play.svg

-5
This file was deleted.

media/resources/dark/question.svg

-56
This file was deleted.

media/resources/dark/run.svg

-3
This file was deleted.

media/resources/dark/sync.svg

-56
This file was deleted.

media/resources/light/pencil.svg

-1
This file was deleted.

media/resources/light/play.svg

-5
This file was deleted.

media/resources/light/question.svg

-1
This file was deleted.

media/resources/light/run.svg

-3
This file was deleted.

media/resources/light/sync.svg

-55
This file was deleted.

package.json

+6-21
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
{
9595
"id": "PowerShellCommandExplorer",
9696
"title": "(Preview) PowerShell Command Explorer",
97-
"icon": "media/pwsh.svg"
97+
"icon": "$(terminal-powershell)"
9898
}
9999
]
100100
},
@@ -155,19 +155,13 @@
155155
{
156156
"command": "PowerShell.RefreshCommandsExplorer",
157157
"title": "Refresh Command Explorer",
158-
"icon": {
159-
"light": "media/resources/light/sync.svg",
160-
"dark": "media/resources/dark/sync.svg"
161-
},
158+
"icon": "$(sync)",
162159
"category": "PowerShell"
163160
},
164161
{
165162
"command": "PowerShell.InsertCommand",
166163
"title": "Insert Command",
167-
"icon": {
168-
"light": "media/resources/light/pencil.svg",
169-
"dark": "media/resources/dark/pencil.svg"
170-
},
164+
"icon": "$(pencil)",
171165
"category": "PowerShell"
172166
},
173167
{
@@ -178,29 +172,20 @@
178172
{
179173
"command": "PowerShell.ShowHelp",
180174
"title": "Get Help for Command",
181-
"icon": {
182-
"light": "media/resources/light/question.svg",
183-
"dark": "media/resources/dark/question.svg"
184-
},
175+
"icon": "$(question)",
185176
"category": "PowerShell"
186177
},
187178
{
188179
"command": "PowerShell.Debug.Start",
189180
"title": "Run",
190181
"category": "PowerShell",
191-
"icon": {
192-
"light": "media/resources/light/run.svg",
193-
"dark": "media/resources/dark/run.svg"
194-
}
182+
"icon": "$(run)"
195183
},
196184
{
197185
"command": "PowerShell.RunSelection",
198186
"title": "Run Selection",
199187
"category": "PowerShell",
200-
"icon": {
201-
"light": "media/resources/light/play.svg",
202-
"dark": "media/resources/dark/play.svg"
203-
}
188+
"icon": "$(debug-line-by-line)"
204189
},
205190
{
206191
"command": "PowerShell.RestartSession",

0 commit comments

Comments
 (0)