From 04e7f1fa8b818a8585cc0f5bac0e522d2ea273d8 Mon Sep 17 00:00:00 2001 From: Dexter Rualo Date: Sat, 3 Nov 2018 23:54:47 +0800 Subject: [PATCH] Fix: Typo in Vim guide (#24972) * Fix: Typo in Vim guide * Update index.md --- guide/english/vim/index.md | 4 ++-- guide/english/vim/motions/index.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/vim/index.md b/guide/english/vim/index.md index 9e6ee33577..b9fa68b77b 100644 --- a/guide/english/vim/index.md +++ b/guide/english/vim/index.md @@ -16,9 +16,9 @@ Vim is rock stable and boasts many features including: - built-in macro support for automation text manipulation - usable on systems that lack support for GUI based text editors -One of the main differences that Vim (and its predecessor, *vi*) have over other editors like *nano*, is that it is a _modal editor_, which means that it have several modes of operation. For example, the editor starts in *Navigation Mode*, which allows you to quickly move around the document (or, more accurately _blazingly fast_). In this mode, you can enter commands to interact with your document, like using `:i` to enter `insert mode`, `:q` to quit, `/` to search text, among others. +One of the main differences that Vim (and its predecessor, *vi*) have over other editors like *nano*, is that it is a _modal editor_, which means that it have several modes of operation. For example, the editor starts in *Navigation Mode*, which allows you to quickly move around the document (or, more accurately _blazingly fast_). In this mode, you can enter commands to interact with your document, like using `i` to enter `insert mode`, `:q` to quit, `/` to search text, among others. -The modal part of Vim is what makes it really powerful. For a interactive tutorial, please visit [OpenVim](http://www.openvim.com/). Here you can try for yourself several of its more powerful features. +The modal part of Vim is what makes it really powerful. For an interactive tutorial, please visit [OpenVim](http://www.openvim.com/). Here you can try for yourself several of its more powerful features. ## More information diff --git a/guide/english/vim/motions/index.md b/guide/english/vim/motions/index.md index c9154c524a..5805a5c58f 100644 --- a/guide/english/vim/motions/index.md +++ b/guide/english/vim/motions/index.md @@ -70,7 +70,7 @@ motion + a character to search You can also move to begin or end of line with VIM, with this commands: - `0` -> Begin of the line - - `^` -> First non-black character of the line + - `^` -> First non-blank character of the line - `$` -> End of the line ### File motions