Fix typo in cheatsheet_syntax.md

This commit is contained in:
Denis Isidoro 2021-08-07 11:04:59 -03:00 committed by GitHub
parent e6acbe7936
commit d153661d52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,21 +61,21 @@ $ mapped: echo 'false true' | tr ' ' '\n' --- --map "grep -q t && echo 1 || echo
```
The supported parameters are:
- `--column <number>`: extracts a single column from the selected result;
- `--map <bash_code>` *(experimental)*: applies a map function to the selected variable value;
- `--prevent-extra` *(experimental)*: limits the user to select one of the suggestions;
- `--fzf-overrides <arg>` *(experimental)*: applies arbitrary `fzf` overrides;
- `--column <number>`: extracts a single column from the selected result
- `--map <bash_code>`: *(experimental)* applies a map function to the selected variable value
- `--prevent-extra`: *(experimental)* limits the user to select one of the suggestions
- `--fzf-overrides <arg>`: *(experimental)* applies arbitrary `fzf` overrides
- `--expand`: *(experimental)* converts each line into a separate argument
In addition, it's possible to forward the following parameters to `fzf`:
- `--multi`;
- `--expand` *(experimental)*: converts each line into a separate argument;
- `--header-lines <number>`;
- `--delimiter <regex>`;
- `--query <text>`;
- `--filter <text>`;
- `--header <text>`;
- `--preview <bash_code>`;
- `--preview-window <text>`.
- `--multi`
- `--header-lines <number>`
- `--delimiter <regex>`
- `--query <text>`
- `--filter <text>`
- `--header <text>`
- `--preview <bash_code>`
- `--preview-window <text>`
### Variable dependency
@ -140,4 +140,4 @@ true \
cat <jsons>
$ jsons: find . -iname '*.json' -type f -print --- --multi --expand
```
```