aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-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;