editor/vim/ ExMode


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.