Copy of Snippet "Fill in a form from CSV formatted clipboard content"

Reduce the monotony of filling in forms. Format the data with comma separated values in a text editor (or exported from a spreadsheet) e.g. First name, surname, email, quantity.

Then use this snippet to paste each value in the row into a form e.g.
First name
surname
email
quantity

{words=split({clipboard}, ",")}{repeat: for word in words}{=word}{key: tab}{endrepeat}

1 Like

Thanks for sharing @Riley_Ramone