vim 在所有行首为 & 的行的 上一行 的行尾 附加 字符 &
例如
subroutine test( a, b,
& c )
要在 subroutine test( a, b, 后加 &
subroutine test( a, b, &
& c )
或者有别的工具能方便的处理也行
例如
subroutine test( a, b,
& c )
要在 subroutine test( a, b, 后加 &
subroutine test( a, b, &
& c )
或者有别的工具能方便的处理也行
:%s/\n&/\&&/g