itchyny / calendar.vim

A calendar application for Vim
MIT License
1.95k stars 72 forks source link

Wrapping Days in Sequence in Visual Mode #179

Closed coleastaire closed 4 years ago

coleastaire commented 4 years ago

It would be great if while in visual mode, continuously selecting to the right or left would select days in sequence. For example, currently, attempting to move to the right from a Saturday simply stops the selection, rather than wrapping to the next day in the sequence, Sunday. Similarly this doesn't happens when attempting to move left from a Sunday back to Saturday.

itchyny commented 4 years ago

You are using l and h right? These mappings stops at the ends and w and b wrap. They are expected to behave as same as in the normal buffers.

coleastaire commented 4 years ago

I was only using l and h. Thanks!