Skip to content

Commit 46bc0fb

Browse files
Fix messaging
1 parent de8eed9 commit 46bc0fb

3 files changed

Lines changed: 27 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
- Automatic discovery of shell scripts, npm scripts, Makefile targets, VS Code tasks, launch configurations, and Python scripts
88
- Unified tree view in the sidebar with collapsible categories
99
- Folder-based grouping with nested directory hierarchy
10-
- Run tasks in a new terminal or the current terminal
10+
- Run commands in a new terminal or the current terminal
1111
- Debug launch configurations directly from the tree
12-
- Quick Tasks panel for pinning frequently-used tasks
12+
- Quick Launch panel for pinning frequently-used commands
1313
- Tag system with pattern-based auto-tagging (by type, label, or exact ID)
1414
- Text filter and tag filter with toolbar controls
1515
- Configurable exclude patterns and sort order (folder, name, type)
1616
- File watcher for automatic refresh on config and script changes
17-
- Parameterized task support with input prompts
17+
- Parameterized command support with input prompts

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# CommandTree
22

3-
One sidebar. Every task in your workspace.
3+
One sidebar. Every command in your workspace.
44

5-
CommandTree scans your project and surfaces all runnable tasks in a single tree view: shell scripts, npm scripts, Makefile targets, VS Code tasks, launch configurations, and Python scripts. Filter by text or tag, run in terminal or debugger.
5+
CommandTree scans your project and surfaces all runnable commands in a single tree view: shell scripts, npm scripts, Makefile targets, VS Code tasks, launch configurations, and Python scripts. Filter by text or tag, run in terminal or debugger.
66

77
## Features
88

99
- **Auto-discovery** - Shell scripts (`.sh`, `.bash`, `.zsh`), npm scripts, Makefile targets, VS Code tasks, launch configurations, and Python scripts
10-
- **Quick Tasks** - Pin frequently-used tasks to a dedicated panel at the top
11-
- **Tagging** - Auto-tag tasks by type, label, or exact ID using pattern rules in `.vscode/commandtree.json`
10+
- **Quick Launch** - Pin frequently-used commands to a dedicated panel at the top
11+
- **Tagging** - Auto-tag commands by type, label, or exact ID using pattern rules in `.vscode/commandtree.json`
1212
- **Filtering** - Filter the tree by text search or by tag
1313
- **Run anywhere** - Execute in a new terminal, the current terminal, or launch with the debugger
14-
- **Folder grouping** - Tasks grouped by directory with collapsible nested hierarchy
15-
- **Parameterized tasks** - Prompt for arguments before execution
14+
- **Folder grouping** - Commands grouped by directory with collapsible nested hierarchy
15+
- **Parameterized commands** - Prompt for arguments before execution
1616
- **File watching** - Automatic refresh when scripts or config files change
1717

18-
## Supported Task Types
18+
## Supported Command Types
1919

2020
| Type | Source |
2121
|------|--------|
@@ -36,24 +36,24 @@ npm run package
3636
code --install-extension commandtree-*.vsix
3737
```
3838

39-
Open a workspace and the CommandTree panel appears in the sidebar. All discovered tasks are listed by category.
39+
Open a workspace and the CommandTree panel appears in the sidebar. All discovered commands are listed by category.
4040

4141
## Usage
4242

43-
- **Run a task** - Click the play button or right-click > "Run Task"
43+
- **Run a command** - Click the play button or right-click > "Run Command"
4444
- **Run in current terminal** - Right-click > "Run in Current Terminal"
4545
- **Debug** - Launch configurations run with the VS Code debugger
46-
- **Star a task** - Click the star icon to pin it to Quick Tasks
46+
- **Star a command** - Click the star icon to pin it to Quick Launch
4747
- **Filter** - Use the toolbar icons to filter by text or tag
48-
- **Tag tasks** - Right-click > "Add Tag" to group related tasks
48+
- **Tag commands** - Right-click > "Add Tag" to group related commands
4949
- **Edit tags** - Configure auto-tagging patterns in `.vscode/commandtree.json`
5050

5151
## Settings
5252

5353
| Setting | Description | Default |
5454
|---------|-------------|---------|
5555
| `commandtree.excludePatterns` | Glob patterns to exclude from discovery | `**/node_modules/**`, `**/.git/**`, etc. |
56-
| `commandtree.sortOrder` | Sort tasks by `folder`, `name`, or `type` | `folder` |
56+
| `commandtree.sortOrder` | Sort commands by `folder`, `name`, or `type` | `folder` |
5757

5858
## Tag Configuration
5959

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commandtree",
33
"displayName": "CommandTree",
4-
"description": "Unified task runner: discover shell scripts, npm scripts, Makefiles, launch configs, VS Code tasks and more in one filterable tree",
4+
"description": "Unified command runner: discover shell scripts, npm scripts, Makefiles, launch configs, VS Code tasks and more in one filterable tree",
55
"version": "0.1.0",
66
"author": "Christian Findlay",
77
"license": "MIT",
@@ -22,7 +22,7 @@
2222
"Testing"
2323
],
2424
"keywords": [
25-
"tasks",
25+
"commands",
2626
"runner",
2727
"npm",
2828
"makefile",
@@ -63,12 +63,12 @@
6363
"commands": [
6464
{
6565
"command": "commandtree.refresh",
66-
"title": "Refresh Tasks",
66+
"title": "Refresh Commands",
6767
"icon": "$(refresh)"
6868
},
6969
{
7070
"command": "commandtree.run",
71-
"title": "Run Task (New Terminal)",
71+
"title": "Run Command (New Terminal)",
7272
"icon": "$(play)"
7373
},
7474
{
@@ -78,7 +78,7 @@
7878
},
7979
{
8080
"command": "commandtree.filter",
81-
"title": "Filter Tasks",
81+
"title": "Filter Commands",
8282
"icon": "$(search)"
8383
},
8484
{
@@ -97,17 +97,17 @@
9797
},
9898
{
9999
"command": "commandtree.addToQuick",
100-
"title": "Add to Quick Tasks",
100+
"title": "Add to Quick Launch",
101101
"icon": "$(star-empty)"
102102
},
103103
{
104104
"command": "commandtree.removeFromQuick",
105-
"title": "Remove from Quick Tasks",
105+
"title": "Remove from Quick Launch",
106106
"icon": "$(star-full)"
107107
},
108108
{
109109
"command": "commandtree.refreshQuick",
110-
"title": "Refresh Quick Tasks",
110+
"title": "Refresh Quick Launch",
111111
"icon": "$(refresh)"
112112
},
113113
{
@@ -336,7 +336,7 @@
336336
"**/.vs/**",
337337
"**/test/fixtures/**"
338338
],
339-
"description": "Glob patterns to exclude from task discovery"
339+
"description": "Glob patterns to exclude from command discovery"
340340
},
341341
"commandtree.sortOrder": {
342342
"type": "string",
@@ -348,10 +348,10 @@
348348
],
349349
"enumDescriptions": [
350350
"Sort by folder path, then alphabetically by name",
351-
"Sort alphabetically by task name",
352-
"Sort by task type, then alphabetically by name"
351+
"Sort alphabetically by command name",
352+
"Sort by command type, then alphabetically by name"
353353
],
354-
"description": "How to sort tasks within categories"
354+
"description": "How to sort commands within categories"
355355
}
356356
}
357357
},

0 commit comments

Comments
 (0)