Move forward and backward in Vim change list

Tags: vim

When you make some changes, Vim records your changes as a change list

To see your change list useĀ  :changes You can go backward in a change list by using the command

g;

For go forward use the command

g,

You can remember it by thinking of ; and , which used in f{character} that we repeat next found with ; and previous found with ,

You can repeat it to continue go backward and forward by typing the command again.

Exampleenter image description here