1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 05:28:37 +01:00

Fix typo in vim (close #4311)

This commit is contained in:
Marcel Ribeiro Dantas, Ph.D 2022-07-08 15:02:07 +02:00 committed by GitHub
parent 310822b243
commit 5520ace40e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ specific points in the file, and for fast editing.
/word # Highlights all occurrences of word after cursor
?word # Highlights all occurrences of word before cursor
n # Moves cursor to next occurrence of word after search
N # Moves cursor to previous occerence of word
N # Moves cursor to previous occurrence of word
:%s/foo/bar/g # Change 'foo' to 'bar' on every line in the file
:s/foo/bar/g # Change 'foo' to 'bar' on the current line