Vim Tips Wiki
Tag: sourceedit
 
(29 intermediate revisions by 10 users not shown)
Line 1: Line 1:
  +
{{TipNew
'''Vim 7.2''' ''Red Hat Enterprise Linux AS release 4 (Nahant Update 6)''
 
  +
|id=1611
  +
|previous=1610
  +
|next=1612
  +
|created=2008
  +
|complexity=basic
  +
|author=
  +
|version=7.0
  +
|subpage=/200812
  +
|category1=Usage
  +
|category2=
  +
}}
  +
A ''range'' permits a command to be applied to a group of lines in the current buffer. For most commands, the default range is the current line. For example:
  +
*<code>:s/old/new/g</code> &nbsp;&nbsp;changes all ''old'' to ''new'' in the current line
  +
*<code>:11,15s/old/new/g</code> &nbsp;&nbsp;changes lines 11 to 15 inclusive
  +
*<code>:%s/old/new/g</code> &nbsp;&nbsp;changes all lines
   
== Overview ==
+
==Examples==
  +
A range can be specified using line numbers or special characters, as in these examples:
''Ranges'' permit a command to be applied over a subset of a file's lines. By default, the range of a Vim command is the current line. It can be helpful to think in terms of commands being executed over a one-line range of lines, and of range changes as modifiers to the range.
 
  +
{| class="wikitable"
  +
!Range !! Description !! Example
  +
|-
  +
| <code>21</code> || line 21 || <code>:21s/old/new/g</code>
  +
|-
  +
| <code>1</code> || first line || <code>:1s/old/new/g</code>
  +
|-
  +
| <code>$</code> || last line || <code>:$s/old/new/g</code>
  +
|-
  +
| <code>.</code> || current line || <code>:.w single.txt</code>
  +
|-
  +
| <code>%</code> || all lines (same as <code>1,$</code>) || <code>:%s/old/new/g</code>
  +
|-
  +
| <code>21,25</code> || lines 21 to 25 inclusive || <code>:21,25s/old/new/g</code>
  +
|-
  +
| <code>21,$</code> || lines 21 to end || <code>:21,$s/old/new/g</code>
  +
|-
  +
| <code>.,$</code> || current line to end || <code>:.,$s/old/new/g</code>
  +
|-
  +
| <code>.+1,$</code> || line ''after'' current line to end || <code>:.+1,$s/old/new/g</code>
  +
|-
  +
| <code>.,.+5</code> || six lines (current to current+5 inclusive) || <code>:.,.+5s/old/new/g</code>
  +
|-
  +
| <code>.,.5</code> || same (<code>.5</code> is interpreted as <code>.+5</code>) || <code>:.,.5s/old/new/g</code>
  +
|}
   
  +
The <code>:s///</code> command substitutes in the specified lines. The <code>:w</code> command writes a file. On its own, <code>:w</code> writes all lines from the current buffer to the file name for the buffer. Given a range and a file name, <code>:w</code> writes only the specified lines to the specified file. The example above creates file <code>single.txt</code> containing the current line.
In general, range modifications should be specified in the form <code>'''x,y'''</code> where '''x''' is the number of a line in a file and '''y''' is a ''subsequent line'' in the same file; though there are some special options as well:
 
* The percent sign (%) is used as a special sigil to denote all lines in the file.
 
* The special syntax '''.,.x''' can be used to denote '''x''' lines from the current line.
 
   
  +
If you know you want to substitute in six lines, starting from the current line, you can use either of the ranges shown above. An easier method is to enter a count value (type <code>6</code>), then enter the colon command with no range (type <code>:s/old/new/g</code>). Because you entered a count, Vim displays the command:
  +
<pre>
  +
:.,.+5s/old/new/g
  +
</pre>
   
  +
==Default range==
;Mnemonic: The '''o/o''' of a percent sign resembles the '''x,y''' and '''.,.''' structure of ranges, but with a "wildcard" for each number.
 
  +
For most commands, the default range is <code>.</code> (the current line, for example, <code>:s///</code> substitutes in the current line). However, for <code>:g//</code> and <code>:w</code> the default is <code>%</code> (all lines).
   
  +
{| class="wikitable"
  +
!Example !! Equivalent !! Description
  +
|-
  +
| <code>:s/old/new/g</code> || <code>:.s/old/new/g</code> || substitute in current line
  +
|-
  +
| <code>:g/old/</code> || <code>:%g/old/</code> || list all lines matching <code>old</code>
  +
|-
  +
| <code>:w my.txt</code> || <code>:%w my.txt</code> || write all lines to file <code>my.txt</code>
  +
|}
   
  +
==Selections==
Ranges should always be ''forward'' ranges -- that is, it should always be true that '''x''' < '''y'''. Inverting the range by making '''y''' < '''x''' (such as, <pre style="display: inline; padding: 1px 3px;">:14,10s/abc/def/g</pre>) will cause Vim to object, prompting the user as to whether the '''x''' and '''y''' should be reversed:
 
  +
A command like <code>:123,145s/old/new/g</code> substitutes in lines 123 to 145 inclusive, but what if you're not sure what the line numbers are? One method is to use ''marks'': Type <code>ma</code> in the first line, then type <code>mb</code> in the last line (to set marks <code>a</code> and <code>b</code>). Then enter command <code>:'a,'bs/old/new/g</code> to substitute in lines from mark <code>a</code> to <code>b</code>, inclusive.
Backwards range given, OK to swap (y/n)?
 
Choosing "y" here will cause Vim to invert the range (making it a ''forward'' range) and execute the command. Choosing "n" will abort the operation.
 
   
  +
Another method is to visually select lines, then enter a colon command (for example, <code>:s/old/new/g</code>). Note that you do not enter a range. However, because the command was entered while lines were selected, Vim displays the command as:
== Range Errors ==
 
  +
<pre>
When a user requests that a command be applied over a range of lines beyond those found in the file, Vim will object with an error:
 
  +
:'<,'>s/old/new/g
E16: Invalid range
 
  +
</pre>
   
  +
The range <code>'<,'></code> is entered automatically to identify the lines that were last visually selected (they do not need to be visually selected now).
== Examples ==
 
   
  +
For example, you might type <code>vip</code> to visually select "inner paragraph" (the paragraph holding the cursor). Then type <code>:s/old/new/g</code> to substitute in all lines in the selected paragraph.
=== Current line ===
 
By default, the range of a Vim command is the current line. The following command will replace the letters "abc" with "def" on the current line:
 
:s/abc/def/
 
   
  +
==Deleting, copying and moving==
;''Note'': Use the "g" flag at the end of the replacement to replace globally (within the range). That is, the above command will convert <code>abc,abc</code> to <code>def,abc</code>. To replace ''every'' occurrence of "abc" with "def", use the command <pre style="display: inline; padding: 1px 3px;">:s/abc/def/g</pre>. See [[Search and replace]] for more information.
 
  +
Ranges work with Ex commands (those typed after a colon, for example, <code>:w</code>). As well as the commands we've seen so far, it's handy to know how to use <code>:d</code> (delete lines), <code>:t</code> or <code>:co</code> (copy lines), and <code>:m</code> (move lines).
   
  +
{| class="wikitable"
=== Between specific line numbers ===
 
  +
!Command !! Description
Using the above string replacement example, we can modify the range to replace all occurrences of "abc" with "def" between any two lines in the file (inclusive) using the '''x,y''' syntax for range modification. Specific ranges should always be ''forward'' ranges (see [[Ranges#Overview|the Overview section]] above for details). For example, to execute the replacement over lines 10, 11, 12, and 13, we may type
 
  +
|-
:10,13s/abc/def/g
 
  +
| <code>:21,25d</code> || delete lines 21 to 25 inclusive
  +
|-
  +
| <code>:$d</code> || delete the last line
  +
|-
  +
| <code>:1,.-1d</code> || delete all lines before the current line
  +
|-
  +
| <code>:.+1,$d</code> || delete all lines after the current line
  +
|-
  +
| <code>:21,25t 30</code> || copy lines 21 to 25 inclusive to just after line 30
  +
|-
  +
| <code>:$t 0</code> || copy the last line to before the first line
  +
|-
  +
| <code>:21,25m 30</code> || move lines 21 to 25 inclusive to just after line 30
  +
|-
  +
| <code>:$m 0</code> || move the last line to before the first line
  +
|}
   
  +
The line numbers in a command are those ''before'' the command executes. In the earlier example which moved lines 21..25 to after 30, the "30" refers to the line number before the move occurred.
=== X lines from the current line ===
 
Use the special '''.,.x''' syntax to modify the range to apply to the current line and '''x''' subsequent lines. Thus, to replace all occurrences of "abc" with "def" in the current line and the next 4 lines, we may type
 
:.,.4s/abc/def/g
 
   
  +
==Ranges with marks and searches==
If the current line is line 100, then all occurrences of "abc" will be replaced with "def" in lines 100, 101, 102, 103, and 104.
 
  +
In a range, a line number can be given as:
  +
*A mark (for example, <code>'x</code> is the line containing mark <code>x</code>).
  +
*A search (for example, <code>/pattern/</code> is the next line matching ''pattern'').
   
  +
When using a mark, it must exist in the current buffer.
Because of this, it is permissible to restrict a command to the current line explicitly with the following syntax:
 
:.,.0s/abc/def/g
 
which will be interpreted that the command should be executed over the current line ''and zero subsequent lines''. It's usually better simply to use the implicit "current-line" range interpretation provided by
 
:s/abc/def/g
 
   
  +
{| class="wikitable"
It is also permissible to restrict a command to the current line semi-explicitly by omitting the '''x''' entirely:
 
  +
!Command !! Description
:.,.s/abc/def/g
 
  +
|-
  +
| <code>:'a,'bd</code> || delete lines from mark <code>a</code> to mark <code>b</code>, inclusive
  +
|-
  +
| <code>:.,'bd</code> || delete lines from the current line to mark <code>b</code>, inclusive
  +
|-
  +
| <code>:'a,'bm 0</code> || move lines from mark <code>a</code> to <code>b</code> inclusive, to the beginning
  +
|-
  +
| <code>:'a,'bw file.txt</code> || write lines from mark <code>a</code> to <code>b</code> to file.txt
  +
|-
  +
| <code>:'a,'bw >> file.txt</code> || append lines from mark <code>a</code> to <code>b</code> to file.txt
  +
|}
   
  +
Here are some examples using searches:
Finally, for advanced users, it should be noted that Vim's interpretation of the '''.,.x''' range modifier is ''symbolic'' and not ''iterative''; that is, rather than iterating the command over '''x''' lines, the current line number is first calculated, then the last line number, and (effectively) a standard range modifier is applied. So if the cursor is currently on line 30 and the command
 
  +
;<code>:.,/green/co $</code>
:.,.12s/abc/def/g
 
  +
:Copy the lines from the current line to the next line containing 'green' (inclusive), to the end of the buffer.
is executed, the lines involved will be internally calculated and applied as
 
  +
;<code>:/apples/,/apples/+1s/old/new/g</code>
:30,42s/abc/def/g
 
  +
:Replace all "old" in the next line in which the "apples" occurs, and the line following it.
  +
;<code>:/apples/;.1s/old/new/g</code>
  +
:Same (<code>.1</code> is <code>.+1</code>, and because <code>;</code> was used, the cursor position is set to the line matching "apples" ''before'' interpreting the <code>.+1</code>).
  +
;<code>:/apples/,.100s/old/new/g</code>
  +
:Replace all "old" in the next line in which "apples" occurs, and all lines up to and including 100 lines after the current line (where the command was entered).
   
  +
To do a replace in blocks identified by an initial and a final pattern:
It is possible to exploit this mechanism to apply an ''backwards'' range from the current line by using a negative value for '''x'''. Thus, if the current cursor is on line 30 and the command
 
  +
;<code>:/apples/,/peaches/ s/old/new/g</code>
:.,.-12s/abc/def/g
 
  +
:Replace all "old" in the first block that starts with "apples" and ends with "peaches".
is executed, it will be interpreted as the command
 
  +
:<code>/apples/</code> identifies the first line after the cursor containing "apples".
:30,18s/abc/def/g
 
  +
:<code>/peaches/</code> is similar (first line after the current line, ''not'' the first after "apples"). Be aware of backwards ranges.
  +
:The block is all lines from "apples" to "peaches", inclusive.
  +
;<code>:/apples/;/peaches/ s/old/new/g</code>
  +
:Same, but "peaches" identifies the first occurrence ''after'' "apples".
  +
;<code>:/apples/,/peaches/ s/^/# /g</code>
  +
:Insert "<code># </code>" at the start of each line in the first block.
  +
;<code>:/apples/+1,/peaches/-1 s/^/# /g</code>
  +
:Insert "<code># </code>" at the start of each line inside the block.
   
  +
To do a global replace in all blocks with the same patterns, [[Power of g|use <code>:g</code>]]:
As this is a ''backwards'' range, Vim will object, asking the user
 
  +
;<code>:g/apples/,/peaches/ s/^/# /g</code>
Backwards range given, OK to swap (y/n)?
 
  +
:Insert "<code># </code>" at the start of each line in all identified blocks.
  +
:<code>:g/apples/</code> identifies each line containing "apples".
  +
:In each such line, <code>.,/peaches/ s/^/# /g</code> is executed
  +
:(the <code>.</code> is assumed; it means the current line, where "apples" occurs).
  +
;<code>:g/^function!\? \(s:\)\?My/;/^endfunction/s/^/" /</code>
  +
:''This example is for a Vim script where functions start with <code>function</code> or <code>function!</code> and end with <code>endfunction</code>.''
  +
:Insert "<code>" </code>" at the start of each line in each block.
  +
:All functions that start with <code>function My</code> or <code>function s:My</code> will be commented out.
  +
:The last line in each block is where <code>endfunction</code> first occurs (at the left margin), after where <code>function My</code> is found.
   
  +
Even more tricks are available; see {{help|cmdline-ranges}}. Summary:
Choosing "y" will cause Vim to reverse the range to
 
:18,30s/abc/def/g
 
giving the desired effect.
 
   
  +
{| class="wikitable"
The added inconvenience of the extra "y" keystroke may be mitigated for some users by the ability to execute a ''backwards-range'' command from the current cursor location.
 
  +
!Item !! Description
  +
|-
  +
| <code>/pattern/</code> || next line where ''pattern'' matches
  +
|-
  +
| <code>?pattern?</code> || previous line where ''pattern'' matches
  +
|-
  +
| <code>\/</code> || next line where the previously used search pattern matches
  +
|-
  +
| <code>\?</code> || previous line where the previously used search pattern matches
  +
|-
  +
| <code>\&</code> || next line where the previously used substitute pattern matches
  +
|-
  +
| <code>0;/that</code> || first line containing "that" (also matches in the first line)
  +
|-
  +
| <code>1;/that</code> || first line after line 1 containing "that"
  +
|}
   
  +
==Comments==
It should be noted that this is probably not an expected or desired behavior and may be changed in subsequent versions of Vim. Habituate yourself at your own risk =)
 
  +
I find this counter-intuitive to define a range with commas. Examples : 21,25
   
  +
I would prefer 21-25 ... --July 19, 2016
=== All lines ===
 
  +
----
As mentioned in the overview above, there is a special sigil to modify the range to apply to all lines in the current file: the percent sign ('''%'''). It can be used this way:
 
  +
A dash cannot be used because it refers to negative numbers, relative to the current line. The following uses range <code>-3,-1</code> to yank (copy) the three line just before each line containing "password".
:%s/abc/def/g
 
  +
<pre>
  +
:let @a=''
  +
:g/password/-3,-1y A
  +
:new
  +
:put a
  +
</pre>
  +
[[User:JohnBeckett|JohnBeckett]] ([[User talk:JohnBeckett|talk]]) 00:05, July 30, 2016 (UTC)
  +
----
  +
Is there more documentation on the concept of "count value", as in this sentence from the wiki above:
   
  +
"An easier method is to enter a count value (type 6), then enter the colon command with no range" ... ? --August 22, 2016
=== Cheat sheet ===
 
  +
:See {{help|N:}} for "Count and Range". It has the example of <code>3:d<CR></code> being translated to <code>.,.+2d<CR></code>. [[User:JohnBeckett|JohnBeckett]] ([[User talk:JohnBeckett|talk]]) 06:04, August 23, 2016 (UTC)
The following "range cheat sheet" can be used as a quick-reference, and can be included dynamically in other articles in the Vim wiki.
 
  +
----
<onlyinclude><table style="border: 1px solid #aaaaaa;" cellpadding=0 cellspacing=0>
 
<caption style="background-color: #aaaaaa; color: white">Range cheat sheet (from [[Ranges]])</caption>
 
<tr style="background-color: #fec423;">
 
<th>Command</th>
 
<th style="text-align: left; padding: 2px 5px;">Description</th>
 
</tr>
 
<tr>
 
<td><code style="padding: 2px 5px; margin: 2px;">:s/abc/def/g</code></td>
 
<td style="padding: 2px 5px;">Replace "abc" with "def" in the current line</td>
 
</tr>
 
<tr>
 
<td><code style="padding: 2px 5px; margin: 2px;">:.,.12s/abc/def/g</code></td>
 
<td style="padding: 2px 5px;"> Replace "abc" with "def" in the current line and the 12 following lines </td>
 
</tr>
 
<tr>
 
<td><code style="padding: 2px 5px; margin: 2px;">:10,35s/abc/def/g</code></td>
 
<td style="padding: 2px 5px;">Replace "abc" with "def" between lines 10 and 35</td>
 
</tr>
 
<tr>
 
<td><code style="padding: 2px 5px; margin: 2px;">:%s/abc/def/g</code></td>
 
<td style="padding: 2px 5px;">Replace "abc" with "def" in all lines</td>
 
</tr>
 
</table></onlyinclude>
 
 
 
''Use the wiki markup'' <code><nowiki>{{:Ranges}}</nowiki></code> ''to include this cheat sheet into other articles. See [[Help:Transclusion]] for more information this process.''
 
 
== Comments ==
 

Latest revision as of 06:04, 23 August 2016

Tip 1611 Printable Monobook Previous Next

created 2008 · complexity basic · version 7.0


A range permits a command to be applied to a group of lines in the current buffer. For most commands, the default range is the current line. For example:

  • :s/old/new/g   changes all old to new in the current line
  • :11,15s/old/new/g   changes lines 11 to 15 inclusive
  • :%s/old/new/g   changes all lines

Examples[]

A range can be specified using line numbers or special characters, as in these examples:

Range Description Example
21 line 21 :21s/old/new/g
1 first line :1s/old/new/g
$ last line :$s/old/new/g
. current line :.w single.txt
% all lines (same as 1,$) :%s/old/new/g
21,25 lines 21 to 25 inclusive :21,25s/old/new/g
21,$ lines 21 to end :21,$s/old/new/g
.,$ current line to end :.,$s/old/new/g
.+1,$ line after current line to end :.+1,$s/old/new/g
.,.+5 six lines (current to current+5 inclusive) :.,.+5s/old/new/g
.,.5 same (.5 is interpreted as .+5) :.,.5s/old/new/g

The :s/// command substitutes in the specified lines. The :w command writes a file. On its own, :w writes all lines from the current buffer to the file name for the buffer. Given a range and a file name, :w writes only the specified lines to the specified file. The example above creates file single.txt containing the current line.

If you know you want to substitute in six lines, starting from the current line, you can use either of the ranges shown above. An easier method is to enter a count value (type 6), then enter the colon command with no range (type :s/old/new/g). Because you entered a count, Vim displays the command:

:.,.+5s/old/new/g

Default range[]

For most commands, the default range is . (the current line, for example, :s/// substitutes in the current line). However, for :g// and :w the default is % (all lines).

Example Equivalent Description
:s/old/new/g :.s/old/new/g substitute in current line
:g/old/ :%g/old/ list all lines matching old
:w my.txt :%w my.txt write all lines to file my.txt

Selections[]

A command like :123,145s/old/new/g substitutes in lines 123 to 145 inclusive, but what if you're not sure what the line numbers are? One method is to use marks: Type ma in the first line, then type mb in the last line (to set marks a and b). Then enter command :'a,'bs/old/new/g to substitute in lines from mark a to b, inclusive.

Another method is to visually select lines, then enter a colon command (for example, :s/old/new/g). Note that you do not enter a range. However, because the command was entered while lines were selected, Vim displays the command as:

:'<,'>s/old/new/g

The range '<,'> is entered automatically to identify the lines that were last visually selected (they do not need to be visually selected now).

For example, you might type vip to visually select "inner paragraph" (the paragraph holding the cursor). Then type :s/old/new/g to substitute in all lines in the selected paragraph.

Deleting, copying and moving[]

Ranges work with Ex commands (those typed after a colon, for example, :w). As well as the commands we've seen so far, it's handy to know how to use :d (delete lines), :t or :co (copy lines), and :m (move lines).

Command Description
:21,25d delete lines 21 to 25 inclusive
:$d delete the last line
:1,.-1d delete all lines before the current line
:.+1,$d delete all lines after the current line
:21,25t 30 copy lines 21 to 25 inclusive to just after line 30
:$t 0 copy the last line to before the first line
:21,25m 30 move lines 21 to 25 inclusive to just after line 30
:$m 0 move the last line to before the first line

The line numbers in a command are those before the command executes. In the earlier example which moved lines 21..25 to after 30, the "30" refers to the line number before the move occurred.

Ranges with marks and searches[]

In a range, a line number can be given as:

  • A mark (for example, 'x is the line containing mark x).
  • A search (for example, /pattern/ is the next line matching pattern).

When using a mark, it must exist in the current buffer.

Command Description
:'a,'bd delete lines from mark a to mark b, inclusive
:.,'bd delete lines from the current line to mark b, inclusive
:'a,'bm 0 move lines from mark a to b inclusive, to the beginning
:'a,'bw file.txt write lines from mark a to b to file.txt
:'a,'bw >> file.txt append lines from mark a to b to file.txt

Here are some examples using searches:

:.,/green/co $
Copy the lines from the current line to the next line containing 'green' (inclusive), to the end of the buffer.
:/apples/,/apples/+1s/old/new/g
Replace all "old" in the next line in which the "apples" occurs, and the line following it.
:/apples/;.1s/old/new/g
Same (.1 is .+1, and because ; was used, the cursor position is set to the line matching "apples" before interpreting the .+1).
:/apples/,.100s/old/new/g
Replace all "old" in the next line in which "apples" occurs, and all lines up to and including 100 lines after the current line (where the command was entered).

To do a replace in blocks identified by an initial and a final pattern:

:/apples/,/peaches/ s/old/new/g
Replace all "old" in the first block that starts with "apples" and ends with "peaches".
/apples/ identifies the first line after the cursor containing "apples".
/peaches/ is similar (first line after the current line, not the first after "apples"). Be aware of backwards ranges.
The block is all lines from "apples" to "peaches", inclusive.
:/apples/;/peaches/ s/old/new/g
Same, but "peaches" identifies the first occurrence after "apples".
:/apples/,/peaches/ s/^/# /g
Insert "# " at the start of each line in the first block.
:/apples/+1,/peaches/-1 s/^/# /g
Insert "# " at the start of each line inside the block.

To do a global replace in all blocks with the same patterns, use :g:

:g/apples/,/peaches/ s/^/# /g
Insert "# " at the start of each line in all identified blocks.
:g/apples/ identifies each line containing "apples".
In each such line, .,/peaches/ s/^/# /g is executed
(the . is assumed; it means the current line, where "apples" occurs).
:g/^function!\? \(s:\)\?My/;/^endfunction/s/^/" /
This example is for a Vim script where functions start with function or function! and end with endfunction.
Insert "" " at the start of each line in each block.
All functions that start with function My or function s:My will be commented out.
The last line in each block is where endfunction first occurs (at the left margin), after where function My is found.

Even more tricks are available; see :help cmdline-ranges. Summary:

Item Description
/pattern/ next line where pattern matches
?pattern? previous line where pattern matches
\/ next line where the previously used search pattern matches
\? previous line where the previously used search pattern matches
\& next line where the previously used substitute pattern matches
0;/that first line containing "that" (also matches in the first line)
1;/that first line after line 1 containing "that"

Comments[]

I find this counter-intuitive to define a range with commas. Examples : 21,25

I would prefer 21-25 ... --July 19, 2016


A dash cannot be used because it refers to negative numbers, relative to the current line. The following uses range -3,-1 to yank (copy) the three line just before each line containing "password".

:let @a=''
:g/password/-3,-1y A
:new
:put a

JohnBeckett (talk) 00:05, July 30, 2016 (UTC)


Is there more documentation on the concept of "count value", as in this sentence from the wiki above:

"An easier method is to enter a count value (type 6), then enter the colon command with no range" ... ? --August 22, 2016

See :help N: for "Count and Range". It has the example of 3:d<CR> being translated to .,.+2d<CR>. JohnBeckett (talk) 06:04, August 23, 2016 (UTC)