From d56ff59da9ff5fc1ab69d8de9fa03c3bd5499cc0 Mon Sep 17 00:00:00 2001 From: "Lesko, Matthew (NIH/NLM/NCBI) [C]" Date: Wed, 13 Jan 2016 11:14:02 -0500 Subject: [PATCH] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d04c323..85a41fa 100644 --- a/README.md +++ b/README.md @@ -418,7 +418,7 @@ You use marks to remember a position, that is line number and column, in a file. | `A` - `Z` | User | Global, thus valid between files. Also called _file marks_. Jumping to a file mark may switch to another buffer. | | `0` - `9` | viminfo | `0` is the position when the viminfo file was written last. In practice this means when the last Vim process ended. `1` is the position of when the second last Vim process ended and so on. | -Put `'`/`g'` or `` ` ``/`` g` `` in front of a register to form a motion. +Put `'`/`g'` or `` ` ``/`` g` `` in front of a mark to form a motion. Use `mm` to remember the current position with mark "m". Move around the file and then jump back via `'m` (first non-blank) or `` `m `` (exact column).