diff options
Diffstat (limited to '')
-rw-r--r-- | vim-mode/vim_mode.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 74d8403..45b2055 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -367,16 +367,16 @@ my $movements_repeatable = { 'x' => undef, 'X' => undef, + 'i' => undef, + 'a' => undef, + 'I' => undef, + 'A' => undef, 'r' => undef, 'p' => undef, 'P' => undef, 'C' => undef, 'D' => undef, '~' => undef, - 'i' => undef, - 'a' => undef, - 'I' => undef, - 'A' => undef, }; |