Normalize the pattern syntax

This commit is contained in:
Igor Irianto 2021-05-07 12:29:40 -05:00
parent 33cf5d944a
commit 5cf77668ba

View file

@ -72,13 +72,13 @@ console.log("three: ", three);
To run the global command on non-matching lines, you can run:
```
:g!/{pattern}/{command}
:g!/pattern/command
```
or
```
:v/{pattern}/{command}
:v/pattern/command
```
If you run `:v/console/d`, it will delete all lines *not* containing "console".