Skip to content

Commit

Permalink
Remove delete as an experimental config
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Jul 7, 2023
1 parent ca02f01 commit 3256d0d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@
"configuration": {
"title": "ResX Editor",
"properties": {
"resx-editor.experimentalDelete": {
"type": "boolean",
"default": true,
"description": "Enable experimental delete functionality"
},
"resx-editor.verboseLogging": {
"type": "boolean",
"default": false,
Expand All @@ -104,7 +99,7 @@
"webview/context": [
{
"command": "resx-editor.deleteResource",
"when": "config.resx-editor.experimentalDelete == true && activeCustomEditorId == 'resx-editor.editor'"
"when": "activeCustomEditorId == 'resx-editor.editor'"
}
],
"editor/title": [
Expand Down
1 change: 0 additions & 1 deletion src/resxProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class ResxProvider implements vscode.CustomTextEditorProvider {
try {
printChannelOutput(document.uri.toString(), true);
if (!this.registered) {
printChannelOutput("deleteResource command registered", true);
this.registered = true;
let deleteCommand = vscode.commands.registerCommand(AppConstants.deleteResourceCommand, () => {

Expand Down

0 comments on commit 3256d0d

Please sign in to comment.