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
#[doc = " \"description\": \"If true, the executables in the workspace can be referred to by their verb aliases.\\nThis allows you to use commands like `flow run` instead of `flow exec`.\\n\","]
160
-
#[doc = " \"type\": \"boolean\""]
158
+
#[doc = " \"verbAliases\": {"]
159
+
#[doc = " \"description\": \"A map of executable verbs to valid aliases. This allows you to use custom aliases for exec commands in the workspace.\\nSetting this will override all of the default flow command aliases. The verbs and it's mapped aliases must be valid flow verbs.\\n\\nIf set to an empty object, verb aliases will be disabled.\\n\","]
#[doc = "If true, the executables in the workspace can be referred to by their verb aliases.\nThis allows you to use commands like `flow run` instead of `flow exec`.\n"]
187
+
#[doc = "A map of executable verbs to valid aliases. This allows you to use custom aliases for exec commands in the workspace.\nSetting this will override all of the default flow command aliases. The verbs and it's mapped aliases must be valid flow verbs.\n\nIf set to an empty object, verb aliases will be disabled.\n"]
Copy file name to clipboardExpand all lines: docs/schemas/workspace_schema.json
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,15 @@
57
57
"$ref": "#/definitions/CommonTags",
58
58
"default": []
59
59
},
60
-
"verbAliasEnabled": {
61
-
"description": "If true, the executables in the workspace can be referred to by their verb aliases.\nThis allows you to use commands like `flow run` instead of `flow exec`.\n",
62
-
"type": "boolean"
60
+
"verbAliases": {
61
+
"description": "A map of executable verbs to valid aliases. This allows you to use custom aliases for exec commands in the workspace.\nSetting this will override all of the default flow command aliases. The verbs and it's mapped aliases must be valid flow verbs.\n\nIf set to an empty object, verb aliases will be disabled.\n",
|`verbAliasEnabled`|If true, the executables in the workspace can be referred to by their verb aliases. This allows you to use commands like `flow run` instead of `flow exec`. |`boolean`| <novalue> ||
22
+
|`verbAliases`|A map of executable verbs to valid aliases. This allows you to use custom aliases for exec commands in the workspace. Setting this will override all of the default flow command aliases. The verbs and it's mapped aliases must be valid flow verbs. If set to an empty object, verb aliases will be disabled. |`map` (`string` -> `array` (`string`))| <novalue> ||
0 commit comments