1

I have documents that are full of double-quoted sentences. And using editors, It seems likely comfortable when 'erase strings surrounded by double(or single) quotes and go insert-mode' function embedded. Is there any way to do it using with vim?

JongHyeon Yeo
  • 879
  • 1
  • 10
  • 18

1 Answers1

5

Change inside quotes, ci" (or ci' for single-quoted strings)

Kanyon
  • 463
  • 3
  • 14