From 5e14be6d01e644f79db7acf458b086218878a69e Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 12 Jan 2016 00:09:58 +0100 Subject: [PATCH] Changelist: mention persistence via viminfo --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7879986..a962411 100644 --- a/README.md +++ b/README.md @@ -404,7 +404,7 @@ Putting it in a nutshell, Vim makes heavy use of events and autocmds but also exposes a clean interface to hook into that event-driven system for customization. -#### Changelist +#### Changelist? The positions of the last 100 changes are kept in the changelist. @@ -418,6 +418,9 @@ position in the list. Usually that will be below change 1, the latest change. Use `g;` or `g,` to go an older or newer position respectively. These also take a count, e.g. `999g;` takes you to the oldest remembered position. +If you want the changelist to persist after restarting Vim, you need to use the +viminfo file and `:h viminfo-'`. + Related help: `:h changelist` #### Quickfix and location lists?