If I have the following content
head = cfg["head"]
head = cfg["head"]
head = cfg["head"]
head = cfg["head"]
Assuming I have a list as below
:let list = ['head', 'hhea', 'os2', 'post']
How can I transform that content into
head = cfg["head"]
hhea = cfg["hhea"]
os2 = cfg["os2"]
post = cfg["post"]
