diff options
| -rw-r--r-- | vim-mode/vim_mode.pl | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index ebed331..89b2dd0 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1126,6 +1126,9 @@ sub flush_input_buffer {      # see what we've collected.      print "Input buffer flushed" if DEBUG; +    # Add the characters to @insert_buf so they can be repeated. +    push @insert_buf, map chr, @input_buf; +      _emulate_keystrokes(@input_buf);      @input_buf = ();  | 
