aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode/vim_mode.pl
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-10-03 21:28:56 +0000
committerSimon Ruderich <simon@ruderich.org>2010-10-03 21:28:56 +0000
commit81463f53bf6f60e8c961c495bb89f9c71a6e1b9c (patch)
treec31eb2c4f91d6624b3f1100f8b1ba7ed09a44ed3 /vim-mode/vim_mode.pl
parentvim_mode: Reorder $movements_repeatable. (diff)
downloadirssi-scripts-81463f53bf6f60e8c961c495bb89f9c71a6e1b9c.tar.gz
irssi-scripts-81463f53bf6f60e8c961c495bb89f9c71a6e1b9c.zip
vim_mode: Minor comment fix.
Diffstat (limited to 'vim-mode/vim_mode.pl')
-rw-r--r--vim-mode/vim_mode.pl2
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.