如何快速去掉Vim中的一对括号?

How to quickly remove a pair of parentheses in Vim?

我有一份文档,其中包含此类重复片段数千次:

( 
   "x" => "a",
   "xxxx" => ("ss") => ("handles).
)

我想用 vim 删除它们,我正在尝试这样做:

%g/(/normal f(d%

但它离开了

( )

打开,还有别的办法吗?

您应该 d删除 a( 而不是:

:g/(/norm da(