Vim:如何使用每行多次出现的ci(内部更改)

chi*_*ron 4 vim

在这样一行:

something "one!", "and two", "and three", "and more"
Run Code Online (Sandbox Code Playgroud)

我应该如何使用命令ci"替换"和三个"?

我尝试了一些没有运气的组合组合.

seh*_*ehe 5

首先导航到所需的子字符串:

/three
Run Code Online (Sandbox Code Playgroud)

或者在行中:

f";;;;
Run Code Online (Sandbox Code Playgroud)

(移动到接下来的"5次)

要么

f,;
Run Code Online (Sandbox Code Playgroud)

然后,ci"将字符串拉开,将光标留在空引号内