## How to replace first n occurrences of a character for each line?
+
https://stackoverflow.com/a/49590581/2571881Suppose, I have
type,type,type,type,description,description,description.
type,type,type,type,description,description.
I want to -
type|type|type|type|description,description,description.
type|type|type|type|description,description.
Solution:
Nothing sofisticated but it get's the job done
:%norm f,r|;.;.;.
:'<,'>s/\%V,\%V/|/g