我想从以下几行中删除百分比标记:
oh_test_() ->
[
%{"fold", ?_test(fold(ns()))},
%{"fold nested", ?_test(fold_nested(ns()))},
%{"push arg empty table", ?_test(push_arg_empty_table(ns()))},
%{"push arg table 1", ?_test(push_arg_table1(ns()))},
%{"push arg nested table", ?_test(push_arg_nested_table(ns()))},
%{"multicall 0", ?_test(multicall_0(ns()))},
%{"multicall 1", ?_test(multicall_1(ns()))},
%{"multicall 2", ?_test(multicall_2(ns()))}
].
光标与 first 一致%
。
:,/%/s/%//
或者:
:,/%/normal ^x
预期:删除所有百分比标记。结果:仅删除前两个百分比标记。
- 为什么?
- 我该怎么做
- 不使用可视模式,并且
- 不计算行号?