diff options
| author | Simon Ruderich <simon@ruderich.org> | 2010-09-30 23:05:41 +0000 | 
|---|---|---|
| committer | Simon Ruderich <simon@ruderich.org> | 2010-09-30 23:26:42 +0000 | 
| commit | aaf88d8ffe11e65edc855676da135b49f34bd829 (patch) | |
| tree | 1086be9c592b7bdb974afdeb866afd267e87cdd0 /vim-mode | |
| parent | vim_mode: Fix esc in ex mode leaving the prompt unchanged. (diff) | |
| download | irssi-scripts-aaf88d8ffe11e65edc855676da135b49f34bd829.tar.gz irssi-scripts-aaf88d8ffe11e65edc855676da135b49f34bd829.zip | |
vim_mode: Add :ls and :buffers.
Diffstat (limited to 'vim-mode')
| -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 fe7fb58..cb2a182 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -958,6 +958,9 @@ sub cmd_ex_command {                  $active_window->print("register $key: $registers->{$key}");              }          } +    # :ls and :buffers +    } elsif ($arg_str eq 'ls' or $arg_str eq 'buffers') { +        Irssi::command('window list');      }  } | 
