Dup Goto 📝

ExMode

PT2/aw/editor/vim 07-31 13:46:45
To Pop
6 lines, 33 words, 290 chars Monday 2023-07-31 13:46:45

Ex mode commands are things that follow a : such as

:t.          --- duplicate current line
:g/hello/t.  --- duplicate every line containing "hello"

See this stackoverflow question for more on :t.