From e6262284b4f002411b683cfb9d86f186f3674660 Mon Sep 17 00:00:00 2001 From: Ivan Paulin Date: Fri, 8 Mar 2019 03:55:34 +0100 Subject: [PATCH] Fix typos in text (#27796) Change "throught" to "through" in several places. Context "move through" instead of "move throught". Fix typo in "caracters", add missing "h". --- guide/english/vim/motions/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/vim/motions/index.md b/guide/english/vim/motions/index.md index fe4cc55263..d3f7289b92 100644 --- a/guide/english/vim/motions/index.md +++ b/guide/english/vim/motions/index.md @@ -9,7 +9,8 @@ title: Motions First in VIM we can use the arrow keys if we like to move around the text file, but it is not the best way to do so, and we lost the advantage of combined commands that VIM provides. -Instead of that, the default and best way to move through the text is using the keys `h`(left), `j`(down), `k`(up) and `l`(right). +Instead, the default and best way to move through the text is using the keys `h`(left), `j`(down), `k`(up) and `l`(right). + ``` ^ @@ -55,8 +56,7 @@ When these motions are combined with other commands you can do things like: ### Search motions -Another way to move to the position you like is using search motions. The search motions consist of the -motion + a character to search +Another way to move to the position you like is using search motions. The search motions consist of the motion + a character to search - `fx` -> move to the next `x` - `tx` -> move to first position before the next `x`