Using Vim, in a file containing strings on successive lines:
bear
fox
jackie chan
What's a good, repeatable way to make a python list of strings:
['bear', 'fox', 'jackie chan']
Tried a kludgy sequence of regexs over the range (such as :1,3s/^/'/, :1,3s/$\n/', /, followed by pesky hand edits.