summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaeden <caedenperelliharris@gmail.com>2022-10-08 12:54:41 +0100
committerMaas Lalani <maas@lalani.dev>2022-10-08 17:01:32 -0400
commit1426c2fed979bcad0d3e97cdf2da49ee877af9f4 (patch)
tree3cda8c6a96dd3b329e55e8ffbdfe3212c81a1ee2
parent86fa35d6728aba5e4992a1773644e4a539778751 (diff)
fix(README): Change `.text` to `.txt`
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 29f1dd2..eb1f306 100644
--- a/README.md
+++ b/README.md
@@ -182,13 +182,13 @@ gum input
Prompt for input with a simple command.
```bash
-gum input > answer.text
+gum input > answer.txt
```
Prompt for sensitive input with the `--password` flag.
```bash
-gum input --password > password.text
+gum input --password > password.txt
```
<picture>
@@ -204,7 +204,7 @@ Prompt for some multi-line text.
Note: `CTRL+D` and `esc` are used to complete text entry. `CTRL+C` will cancel.
```bash
-gum write > story.text
+gum write > story.txt
```
<picture>
@@ -218,10 +218,10 @@ gum write > story.text
Use fuzzy matching to filter a list of values:
```bash
-echo Strawberry >> flavors.text
-echo Banana >> flavors.text
-echo Cherry >> flavors.text
-cat flavors.text | gum filter > selection.text
+echo Strawberry >> flavors.txt
+echo Banana >> flavors.txt
+echo Cherry >> flavors.txt
+cat flavors.txt | gum filter > selection.txt
```
<picture>
@@ -234,13 +234,13 @@ You can also select multiple items with the `--limit` flag, which determines
the maximum number of items that can be chosen.
```bash
-cat flavors.text | gum filter --limit 2
+cat flavors.txt | gum filter --limit 2
```
Or, allow any number of selections with the `--no-limit` flag.
```bash
-cat flavors.text | gum filter --no-limit
+cat flavors.txt | gum filter --no-limit
```
#### Choose