diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-03 21:28:56 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-03 21:28:56 +0000 |
commit | 81463f53bf6f60e8c961c495bb89f9c71a6e1b9c (patch) | |
tree | c31eb2c4f91d6624b3f1100f8b1ba7ed09a44ed3 | |
parent | vim_mode: Reorder $movements_repeatable. (diff) | |
download | irssi-scripts-81463f53bf6f60e8c961c495bb89f9c71a6e1b9c.tar.gz irssi-scripts-81463f53bf6f60e8c961c495bb89f9c71a6e1b9c.zip |
vim_mode: Minor comment fix.
Diffstat (limited to '')
-rw-r--r-- | vim-mode/vim_mode.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 45b2055..a8dd629 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -938,7 +938,7 @@ sub cmd_movement_caret { # No whitespace at all. if ($input !~ m/^\s/) { $pos = 0; - # Some non-whitesapece, go to first one. + # Some non-whitespace, go to first one. } elsif ($input =~ m/[^\s]/) { $pos = $-[0]; # Only whitespace, go to the end. |