Open
Description
Problem
Current output for multiple selection is line oriented.
While line oriented works well for piping into other tools it doesnt work so well when passing arguments by wrapping TV in q subshell. Like.
mv $(tv) /tmp
If you try to select multiple items in TV this will output line separated and won't work.
I think a single gle quoted string would work. If there are single quotes in the middle I think they can be replaced with '''
So for instance something like
my dog's homework.docx
Would become
'my dog'''s homework.docx'
Which I think would be treated as a single argument with spaces and a single quote concatenating
1)my dog
2)'
3)s homework.docx
By most Unix shells.