google / google/zx

Multiple line argument passing

Open
#1,149 1 comment 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.