Skip to content

Commit

Permalink
chore: update vscode typings, use codicons for commands
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Jan 28, 2020
1 parent 3116663 commit 786718f
Show file tree
Hide file tree
Showing 10 changed files with 634 additions and 308 deletions.
24 changes: 8 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,26 +194,17 @@
{
"command": "extension.NAMESPACE(chrome-debug).addCustomBreakpoints",
"title": "%add.browser.breakpoint%",
"icon": {
"light": "resources/light/add.svg",
"dark": "resources/dark/add.svg"
}
"icon": "$(add)"
},
{
"command": "extension.NAMESPACE(chrome-debug).removeCustomBreakpoint",
"title": "%remove.browser.breakpoint%",
"icon": {
"light": "resources/light/remove.svg",
"dark": "resources/dark/remove.svg"
}
"icon": "$(remove)"
},
{
"command": "extension.NAMESPACE(chrome-debug).removeAllCustomBreakpoints",
"title": "%remove.browser.breakpoint.all%",
"icon": {
"light": "resources/light/remove-all.svg",
"dark": "resources/dark/remove-all.svg"
}
"icon": "$(close-all)"
},
{
"command": "extension.NAMESPACE(node-debug).attachNodeProcess",
Expand Down Expand Up @@ -261,6 +252,11 @@
"command": "extension.NAMESPACE(chrome-debug).addCustomBreakpoints",
"when": "view == jsBrowserBreakpoints",
"group": "navigation"
},
{
"command": "extension.NAMESPACE(chrome-debug).removeAllCustomBreakpoints",
"when": "view == jsBrowserBreakpoints",
"group": "navigation"
}
],
"view/item/context": [
Expand All @@ -276,10 +272,6 @@
{
"command": "extension.NAMESPACE(chrome-debug).removeCustomBreakpoint",
"when": "view == jsBrowserBreakpoints"
},
{
"command": "extension.NAMESPACE(chrome-debug).removeAllCustomBreakpoints",
"when": "view == jsBrowserBreakpoints"
}
]
},
Expand Down
1 change: 0 additions & 1 deletion resources/dark/add.svg

This file was deleted.

1 change: 0 additions & 1 deletion resources/dark/remove-all.svg

This file was deleted.

1 change: 0 additions & 1 deletion resources/dark/remove.svg

This file was deleted.

1 change: 0 additions & 1 deletion resources/light/add.svg

This file was deleted.

1 change: 0 additions & 1 deletion resources/light/remove-all.svg

This file was deleted.

1 change: 0 additions & 1 deletion resources/light/remove.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/build/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { sortKeys } from '../common/objUtils';

const strings = {
'attach.node.process': 'Attach to Node Process (preview)',
'attach.node.process': '$(debug-disconnect) Attach to Node Process (preview)',
'extension.description': 'An extension for debugging Node.js programs and Chrome.',
'start.with.stop.on.entry': 'Start Debugging and Stop on Entry',
'toggle.skipping.this.file': 'Toggle Skipping this File',
Expand Down
Loading

0 comments on commit 786718f

Please sign in to comment.