aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-10-03 21:28:34 +0000
committerSimon Ruderich <simon@ruderich.org>2010-10-03 21:28:34 +0000
commitcf0e900643f010aad92349f7e2d4217e39a81857 (patch)
tree4ad3e5d36b72513507e7fd9f221d0b5284baeea9
parentvim_mode: Fix undo if some changes were already undid. (diff)
downloadirssi-scripts-cf0e900643f010aad92349f7e2d4217e39a81857.tar.gz
irssi-scripts-cf0e900643f010aad92349f7e2d4217e39a81857.zip
vim_mode: Reorder $movements_repeatable.
-rw-r--r--vim-mode/vim_mode.pl8
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,
};