When I search and replace a string, it only replaces the first occurrence every line:
1,4 -> 1,4 : a
1,4 --> 2 : b
1,4 --> 6 : c
:%s/,/_
1_4 -> 1,4 : a
1_4 --> 2 : b
1_4 --> 6 : c
Why is this happening? How do I replace all occurences? Why is this the default behavior in vim?