Just note down issues i faced in vim.
Problem: (How to add prefix "#" before ever lines between "#For testing" and " ; ?)
Command:
insert # prefix :g/^# For testing/+1,/^"/ norm! I#
remove # prefix :g/^# For testing/+1,/#^"/ norm! ^x
power g: :g/Pattern/cmd
pattern here is "^# For testing"
cmd here is +1, /^"/ norm! I#, where +1, /^"/ is a ranges command which means that from next line of current line to line of matching pattern (which is ^" here).
norm! I# means that insert "#" at each lines in normal mode.
norm! ^x means that remove first character at each lines in normal mode . (^: begin of a line, x: delete character)