" In Vim, replace every comma with a newline " %s -> apply substitution to the whole file " , -> the pattern to match (comma) " \r -> replacement, inserts a real newline " g -> global flag, replace all occurrences in each line :%s/,/\r/g