Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vimode: Enable '.' to also repeat last inserted text #1102

Merged
merged 2 commits into from
Sep 29, 2021

Commits on Aug 31, 2021

  1. vimode: Enable '.' to also repeat last inserted text

    Currently, '.' only repeats the last command inserted in the command mode
    and doesn't repeat text inserted in the (just exited) insert mode which
    vim does.
    
    Since we already support commands like
    
    10iwrite_text_to_be_repeated_10_times<esc>
    
    we can reuse the code also for the '.' command.
    techee committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    f1dff74 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2021

  1. vimode: increase the size of the buffer for recording insert mode text

    This should be more than enough for manually inserted text and a reasonable
    amount for pasted text.
    techee committed Sep 7, 2021
    Configuration menu
    Copy the full SHA
    25291ea View commit details
    Browse the repository at this point in the history