vim: simplify substitution in whole file (#1555)

This commit is contained in:
Starbeamrainbowlabs
2017-11-08 19:32:00 +00:00
committed by GitHub

View File

@@ -23,9 +23,9 @@
`<Esc>/{{search_pattern}}<Enter>` `<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: - Save (write) the file, and quit: