mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-26 20:40:18 +00:00
fix example in ch13 normal command section
This commit is contained in:
parent
d7dc9e2ff3
commit
58ecd614c3
1 changed files with 6 additions and 6 deletions
|
@ -158,14 +158,14 @@ You can run a normal command with the global command with `:normal` command-line
|
|||
|
||||
If you have this text:
|
||||
```
|
||||
const one = 1;
|
||||
console.log("one: ", one);
|
||||
const one = 1
|
||||
console.log("one: ", one)
|
||||
|
||||
const two = 2;
|
||||
console.log("two: ", two);
|
||||
const two = 2
|
||||
console.log("two: ", two)
|
||||
|
||||
const three = 3;
|
||||
console.log("three: ", three);
|
||||
const three = 3
|
||||
console.log("three: ", three)
|
||||
|
||||
```
|
||||
To add a ";" to the end of each line, run:
|
||||
|
|
Loading…
Reference in a new issue