📜  vim 从分隔符删除到所有行的行尾 - Shell-Bash 代码示例

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

代码示例1
# 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