File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change 11{
22  "name" : " resx-editor"  ,
33  "displayName" : " ResX Viewer and Editor"  ,
4-   "description" : " Viewer for .NET RESX/RESW  resource files"  ,
4+   "description" : " Viewer for resx/resw  resource files"  ,
55  "author" : " Tim Heuer"  ,
66  "publisher" : " timheuer"  ,
77  "icon" : " icon.png"  ,
Original file line number Diff line number Diff line change @@ -3,18 +3,9 @@ import { ResxProvider } from './resxProvider';
33
44
55export  function  activate ( context : vscode . ExtensionContext )  { 
6- 
7- 	// The command has been defined in the package.json file 
8- 	// Now provide the implementation of the command with registerCommand 
9- 	// The commandId parameter must match the command field in package.json 
10- 	let  disposable  =  vscode . commands . registerCommand ( 'resx-viewer.helloWorld' ,  ( )  =>  { 
11- 		// The code you place here will be executed every time your command is executed 
12- 		// Display a message box to the user 
13- 		//HelloWorldPanel.render(context.extensionUri); 
14- 	} ) ; 
15- 
6+ 	
167	context . subscriptions . push ( ResxProvider . register ( context ) ) ; 
17- 	context . subscriptions . push ( disposable ) ; 
8+ 	
189} 
1910
2011export  function  deactivate ( )  { } 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments