diff options
author | Marcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com> | 2022-07-08 15:02:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 15:02:07 +0200 |
commit | 5520ace40eecdd324adad51de9f10bb65a60fd43 (patch) | |
tree | 82fd48320a5bd63e8af2421176e963ff693efa7b | |
parent | 310822b2435f7d5e8231f9043867f1bcbd080c50 (diff) |
Fix typo in vim (close #4311)
-rw-r--r-- | vim.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim.html.markdown b/vim.html.markdown index 00a44807..a72db158 100644 --- a/vim.html.markdown +++ b/vim.html.markdown @@ -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 |