Skip to content

Commit 3256d0d

Browse files
committed
Remove delete as an experimental config
1 parent ca02f01 commit 3256d0d

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@
8888
"configuration": {
8989
"title": "ResX Editor",
9090
"properties": {
91-
"resx-editor.experimentalDelete": {
92-
"type": "boolean",
93-
"default": true,
94-
"description": "Enable experimental delete functionality"
95-
},
9691
"resx-editor.verboseLogging": {
9792
"type": "boolean",
9893
"default": false,
@@ -104,7 +99,7 @@
10499
"webview/context": [
105100
{
106101
"command": "resx-editor.deleteResource",
107-
"when": "config.resx-editor.experimentalDelete == true && activeCustomEditorId == 'resx-editor.editor'"
102+
"when": "activeCustomEditorId == 'resx-editor.editor'"
108103
}
109104
],
110105
"editor/title": [

src/resxProvider.ts

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ export class ResxProvider implements vscode.CustomTextEditorProvider {
4040
try {
4141
printChannelOutput(document.uri.toString(), true);
4242
if (!this.registered) {
43-
printChannelOutput("deleteResource command registered", true);
4443
this.registered = true;
4544
let deleteCommand = vscode.commands.registerCommand(AppConstants.deleteResourceCommand, () => {
4645

0 commit comments

Comments
 (0)