You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`[Added]``group` directive for commands. Organize commands into groups for better readability in help output. See [config reference for group](/docs/config#group).
9
11
10
12
```yaml
@@ -83,16 +85,20 @@ This tag is not released due to build issues
83
85
* `[Added]` Command short syntax. See [config reference for short syntax](/docs/config#short-syntax). Example:
84
86
85
87
Before:
88
+
86
89
```yaml
87
90
commands:
88
91
hello:
89
92
cmd: echo Hello
90
93
```
94
+
91
95
After:
96
+
92
97
```yaml
93
98
commands:
94
99
hello: echo Hello
95
100
```
101
+
96
102
* `[Added]` If command starts with `_` it is considered *hidden* and will not be printed in help message unless `--all` root flag is provided.
97
103
* `[Changed]` Improved rendering of `description` directive. When used in `lets help` usage message the text will be stripped to 120 chars and only text up to first `\n` will be taken. Thus help message will be rendered cosnsistently in width. It is still possible to have a lot of text in `description` and all this text will be used in `lets help [command]` help message. See [config reference for how help messages works](/docs/config#description)
98
104
@@ -107,10 +113,12 @@ This tag is not released due to build issues
0 commit comments