diff --git a/docs/forms.md b/docs/forms.md index 04b274e..6e9f495 100644 --- a/docs/forms.md +++ b/docs/forms.md @@ -193,15 +193,22 @@ If you want to use other Controls in a form specified using the above (verbose) {% raw %} ```yaml - trigger: ":form" - replace: "Hey {{form1.name}}, how are you?" + replace: "Hey {{form1.name}}, how are you? Do you like {{form1.fruit}}?" vars: - name: "form1" type: form params: - layout: "Hey {{name}}, how are you?" + layout: "Name: {{name}} \nFruit: {{fruit}}" fields: name: multiline: true + fruit: + type: list # or `choice` + values: + - Apples + - Bananas + - Oranges + - Peaches ``` {% endraw %} @@ -209,4 +216,4 @@ Note that **the `fields` parameter content is specified as the `form_fields` par ### macOS remarks -For the expansion to take place on macOS, you have to release the submit keys (CTRL+Enter) after submitting the form. \ No newline at end of file +For the expansion to take place on macOS, you have to release the submit keys (CTRL+Enter) after submitting the form.