I would like to set my sublime up to enter a mode where when I paste a set of data looking like this:
1234567 This is code 1
2345678 This is code 2
3456789 This is code 3
It will end up like this:
['1234567', 'This is code1'],
['2345678', 'This is code2'],
['3456789', 'This is code3'],
Is there any way to easily do this using a hot key to switch in and out of my "special paste mode" or even a way to create a snippet that will edit the selection changing it. Heck, at this point even a simple find/replace regex will do.