@@ -34,7 +34,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Extens
3434 } ) ;
3535 context . subscriptions . push ( treeView ) ;
3636
37- // Register quick tasks tree view with drag-and-drop support
37+ // Register Quick Launch tree view with drag-and-drop support
3838 const quickTreeView = vscode . window . createTreeView ( 'commandtree-quick' , {
3939 treeDataProvider : quickTasksProvider ,
4040 showCollapseAll : true ,
@@ -64,7 +64,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Extens
6464
6565 vscode . commands . registerCommand ( 'commandtree.filter' , async ( ) => {
6666 const filter = await vscode . window . showInputBox ( {
67- prompt : 'Filter tasks by name, path, or description' ,
67+ prompt : 'Filter commands by name, path, or description' ,
6868 placeHolder : 'Type to filter...' ,
6969 value : ''
7070 } ) ;
@@ -155,7 +155,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Extens
155155
156156 const taskTags = task . tags ;
157157 if ( taskTags . length === 0 ) {
158- vscode . window . showInformationMessage ( 'This task has no tags' ) ;
158+ vscode . window . showInformationMessage ( 'This command has no tags' ) ;
159159 return ;
160160 }
161161
@@ -177,7 +177,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Extens
177177 } )
178178 ) ;
179179
180- // Watch for file changes that might affect tasks
180+ // Watch for file changes that might affect commands
181181 const watcher = vscode . workspace . createFileSystemWatcher (
182182 '**/{package.json,Makefile,makefile,tasks.json,launch.json,commandtree.json,*.sh,*.py}'
183183 ) ;
0 commit comments