aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-09-26 21:34:06 +0000
committerSimon Ruderich <simon@ruderich.org>2010-09-26 21:34:06 +0000
commitac2c7ce1f56f928311198e645166e6c1a2a6ad4a (patch)
treef11b335afb0ae061800f6a6c10c0bcac70bacd68 /vim-mode
parentvim_mode: And document it (I keep forgetting). (diff)
downloadirssi-scripts-ac2c7ce1f56f928311198e645166e6c1a2a6ad4a.tar.gz
irssi-scripts-ac2c7ce1f56f928311198e645166e6c1a2a6ad4a.zip
vim_mode: Update documentation.
Diffstat (limited to 'vim-mode')
-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 51a17c4..c4ae98b 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -4,11 +4,11 @@
#
# * Insert/Command mode. Escape enters command mode.
# * cursor motion with: h l 0 ^ $
-# * history motion with j,k (only supported on Irssi versions > 0.8.13)
-# * cursor word motion with: w, b, e
+# * history motion with j k
+# * cursor word motion with: w b e W B E
# * change/delete: c d C D
# * delete at cursor: x
-# * Insert mode at pos: i, a
+# * Insert mode at pos: i a
# * Insert mode at start: I
# * insert mode at end: A
# * yank and paste: y p P
@@ -73,7 +73,7 @@ sub M_EX () { 2 } # extended mode (after a :?)
# GLOBAL VARIABLES
-# buffer to keep track of the last N keystrokes following an Esc character.
+# buffer to keep track of the last N keystrokes following an Esc character.
my @esc_buf;
my $esc_buf_timer;
my $esc_buf_enabled = 0;