vim: simplify substitution in whole file

coverage
Max Strübing 2017-10-19 14:38:46 +02:00
parent 9ec0ab7445
commit 37fa82919b
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 (from the start to the end(% holds the file name)):
`<Esc>:1,$s/{{pattern}}/{{replacement}}/g<Enter>`
`<Esc>:%/{{pattern}}/{{replacement}}/g<Enter>`
- Save (write) the file, and quit: