aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-09-29 14:33:54 +0000
committerSimon Ruderich <simon@ruderich.org>2010-09-29 14:33:54 +0000
commit39dc92fe8cbdcffc5966a25aad29802e3f1aa44b (patch)
tree137a446814f6a1f48feaf26b69f027eddf27677f
parentvim_mode: Add missing if DEBUG. (diff)
downloadirssi-scripts-39dc92fe8cbdcffc5966a25aad29802e3f1aa44b.tar.gz
irssi-scripts-39dc92fe8cbdcffc5966a25aad29802e3f1aa44b.zip
vim_mode: Comment update.
Diffstat (limited to '')
-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 c55481c..0b2bb37 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -130,7 +130,7 @@ sub M_CMD() { 1 } # command mode
sub M_INS() { 0 } # insert mode
sub M_EX () { 2 } # extended mode (after a :?)
-# word and non-word regex
+# word and non-word regex, when modifiying also update them in setup_changed()
my $word = qr/[\w_]/o;
my $non_word = qr/[^\w_\s]/o;