or....
Edit the file with sed to add a double-quote to the beginning/ending of each line.
:%s/^/"/
:%/$/"/
(that's what I usually do)
Re: I agree with this one.
or....
Edit the file with sed to add a double-quote to the beginning/ending of each line. :%s/^/"/ :%/$/"/ (that's what I usually do) |