vim: simplify substitution in whole file (#1555)

coverage
Starbeamrainbowlabs 2017-11-08 19:32:00 +00:00 committed by GitHub
commit 83f4361136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@
`<Esc>/{{search_pattern}}<Enter>`
- Perform a regex substitution in the whole file (from the start, `1`, to the end, `$`):
- Perform a regex substitution in the whole file:
`<Esc>:1,$s/{{pattern}}/{{replacement}}/g<Enter>`
`<Esc>:%s/{{pattern}}/{{replacement}}/g<Enter>`
- Save (write) the file, and quit: