You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* ";" address by itself is taken to mean current address to end, i.e. ".,$"
* "A1;A2" expression is the same as "A1,A2"
* ";A2" expression works like ".,A2"
* I tested the following combinations...
,p ---> all lines
%p ---> all lines
;p ---> current line to end
1,p ---> only line 1
1%p ---> not supported
1;p ---> only line 1
1,2p ---> range 1-2
1%2p ---> not supported
1;2p ---> range 1-2
,2p ---> range 1-2
%2n ---> range 1-2
;20p ---> range current line to 20 (error if current>20)
0 commit comments