File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 88
88
"configuration" : {
89
89
"title" : " ResX Editor" ,
90
90
"properties" : {
91
- "resx-editor.experimentalDelete" : {
92
- "type" : " boolean" ,
93
- "default" : true ,
94
- "description" : " Enable experimental delete functionality"
95
- },
96
91
"resx-editor.verboseLogging" : {
97
92
"type" : " boolean" ,
98
93
"default" : false ,
104
99
"webview/context" : [
105
100
{
106
101
"command" : " resx-editor.deleteResource" ,
107
- "when" : " config.resx-editor.experimentalDelete == true && activeCustomEditorId == 'resx-editor.editor'"
102
+ "when" : " activeCustomEditorId == 'resx-editor.editor'"
108
103
}
109
104
],
110
105
"editor/title" : [
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ export class ResxProvider implements vscode.CustomTextEditorProvider {
40
40
try {
41
41
printChannelOutput ( document . uri . toString ( ) , true ) ;
42
42
if ( ! this . registered ) {
43
- printChannelOutput ( "deleteResource command registered" , true ) ;
44
43
this . registered = true ;
45
44
let deleteCommand = vscode . commands . registerCommand ( AppConstants . deleteResourceCommand , ( ) => {
46
45
You can’t perform that action at this time.
0 commit comments