public override VimPoint Move(Interfaces.IVimHost host)
        {
            for (int i = 0; i < this.Repeat; i++) {
                host.MoveToEndOfWord();
            }

            return host.CurrentPosition;
        }