summaryrefslogtreecommitdiffhomepage
path: root/vim.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com>2022-07-08 15:02:07 +0200
committerGitHub <noreply@github.com>2022-07-08 15:02:07 +0200
commit5520ace40eecdd324adad51de9f10bb65a60fd43 (patch)
tree82fd48320a5bd63e8af2421176e963ff693efa7b /vim.html.markdown
parent310822b2435f7d5e8231f9043867f1bcbd080c50 (diff)
Fix typo in vim (close #4311)
Diffstat (limited to 'vim.html.markdown')
-rw-r--r--vim.html.markdown2
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