Answers for "vim delete until end of line"

1

vim delete from delimeter to end of line for all lines

# Basic syntax:
:%norm $T<delimiter>D
# 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
Posted by: Guest on July-22-2021
0

vim delete until end of line

D (uppercase letter D)
Posted by: Guest on October-18-2021

Browse Popular Code Answers by Language