📜  vim 删除直到行尾 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:08.677000             🧑  作者: Mango

代码示例2
# Basic syntax:
:%norm $TD
# Where:
#    - % indicates that the command should be applied on all lines
#    - norm indicates that the command is to be run in normal mode
#    - $T - not sure - probably something like "to end of line"
#    - D indicates delete