Multiple line argument passing
Open
- Dominant language
- JavaScript
- Stars
- 45.7k
- Forks
- 1.3k
- PR merge metrics
- No merged PRs in 30d
Description
I dont believe it's possible to format arguments on multiple lines.
doesn't work
```js
$`
fzf
--preview="cat {2}"
--with-nth="1"
`
```
doesn't work
```js
$`
fzf \
--preview="cat {2}" \
--with-nth="1"
`
```
doesn't work
```js
$`\
fzf \
--preview="cat {2}" \
--with-nth="1"
`
```
doesn't work
```js
$`fzf \
--preview="cat {2}" \
--with-nth="1"
`
```
also doesn't work
```js
$`
fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
```
doesn't work
```js
$`\\
fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
```
doesn't work
```js
$`fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
```
Contributor guide
Assessment
This issue has not been assessed yet.