public override VimPoint Move(Interfaces.IVimHost host)
        {
            int dst_line = this.Repeat - 1;
            if (dst_line != host.CurrentPosition.X) {
                host.GotoLine(dst_line);
            }

            host.ScrollLineCenter();

            return host.CurrentPosition;
        }