diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-07 23:45:12 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-07 23:47:47 +0000 |
commit | 8da515880c62744571ac31fa4ccb9e24c0f63e2a (patch) | |
tree | 539fcea5b8e4802af9e1f5491b19ac3c4d4534a9 /vim-mode/vim_mode.pl | |
parent | vim_mode: Use Vim-like <C-X> char representation. (diff) | |
download | irssi-scripts-8da515880c62744571ac31fa4ccb9e24c0f63e2a.tar.gz irssi-scripts-8da515880c62744571ac31fa4ccb9e24c0f63e2a.zip |
vim_mode: Fix error in $commands_ex hash.
Diffstat (limited to '')
-rw-r--r-- | vim-mode/vim_mode.pl | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index a64df1e..8e3a41d 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -313,23 +313,23 @@ my $commands # All available commands in Ex-Mode. my $commands_ex = { - s => { func => \&ex_substitute => type => C_EX }, - bnext => { func => \&ex_bnext => type => C_EX }, - bn => { func => \&ex_bnext => type => C_EX }, - bprev => { func => \&ex_bprev => type => C_EX }, - bp => { func => \&ex_bprev => type => C_EX }, - bdelete => { func => \&ex_bdelete => type => C_EX }, - bd => { func => \&ex_bdelete => type => C_EX }, - buffer => { func => \&ex_buffer => type => C_EX }, - b => { func => \&ex_buffer => type => C_EX }, - registers => { func => \&ex_registers => type => C_EX }, - reg => { func => \&ex_registers => type => C_EX }, - display => { func => \&ex_registers => type => C_EX }, - di => { func => \&ex_registers => type => C_EX }, - buffers => { func => \&ex_buffers => type => C_EX }, - ls => { func => \&ex_buffers => type => C_EX }, - undolist => { func => \&ex_undolist => type => C_EX }, - undol => { func => \&ex_undolist => type => C_EX }, + s => { func => \&ex_substitute, type => C_EX }, + bnext => { func => \&ex_bnext, type => C_EX }, + bn => { func => \&ex_bnext, type => C_EX }, + bprev => { func => \&ex_bprev, type => C_EX }, + bp => { func => \&ex_bprev, type => C_EX }, + bdelete => { func => \&ex_bdelete, type => C_EX }, + bd => { func => \&ex_bdelete, type => C_EX }, + buffer => { func => \&ex_buffer, type => C_EX }, + b => { func => \&ex_buffer, type => C_EX }, + registers => { func => \&ex_registers, type => C_EX }, + reg => { func => \&ex_registers, type => C_EX }, + display => { func => \&ex_registers, type => C_EX }, + di => { func => \&ex_registers, type => C_EX }, + buffers => { func => \&ex_buffers, type => C_EX }, + ls => { func => \&ex_buffers, type => C_EX }, + undolist => { func => \&ex_undolist, type => C_EX }, + undol => { func => \&ex_undolist, type => C_EX }, }; # MAPPINGS |