LINEINS offers various ways for systematic insertion of lines in the
current edit field. LINEINS does not save the edit field after it has
been activated; it must be done by the user when needed.
LINEINS L1,L2,k,L3 ;
inserts line L3 to lines L1+k,L1+2*k,...,L2.
LINEINS L1,L2,TEXT,L0,L3
inserts line L3 after each line containing text given as line L0.
LINEINS L1,L2,TEXT-1,L0,L3
inserts line L3 before each line containing text gives as line L0.
LINEINS L1,L2,TEXT+k,L0,L3
inserts line L3 k lines after each line containing text given as line L0.
LINEINS L1,L2,TEXT-k,L0,L3
inserts line L3 k lines before each line containing text given as line L0.
LINEINS L1,L2,CONTROL,<char>,L3
inserts line L3 after each line having <char> in the control column.
Here are the same options like CONTROL+k available as in the TEXT option.
In all forms of LINEINS, L3 can be replaced by a parameter of the form L3:L4.
Then the inserted lines will be L3,L3+1,..,L4,L3,L3+1,...,L4,L3,L3+1, etc.