Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 427 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 427 Bytes

join-plus

Join a selected set of lines to a comma separated list of items, optionally enclosing each item in a single or double quote.

e.g. select the text

one
two
three
four
five

Join as CSV Ctrl-Alt-j

one,two,three,four,five

Join as CSV with single quotes Ctrl-Alt-Shift-J

'one','two','three','four','five'

Join as CSV with double quotes

"one","two","three","four","five"