Multiple line argument passing
Author: alexgorbatchevCreated Mar 21, 2025Updated Nov 20, 2025
I dont believe it's possible to format arguments on multiple lines.
doesn't work
$`
fzf
--preview="cat {2}"
--with-nth="1"
`
doesn't work
$`
fzf \
--preview="cat {2}" \
--with-nth="1"
`
doesn't work
$`\
fzf \
--preview="cat {2}" \
--with-nth="1"
`
doesn't work
$`fzf \
--preview="cat {2}" \
--with-nth="1"
`
also doesn't work
$`
fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
doesn't work
$`\\
fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
doesn't work
$`fzf \\
--preview="cat {2}" \\
--with-nth="1"
`
Source: google/zx