diff options
| author | Simon Ruderich <simon@ruderich.org> | 2010-10-08 23:20:03 +0000 | 
|---|---|---|
| committer | Simon Ruderich <simon@ruderich.org> | 2010-10-08 23:20:03 +0000 | 
| commit | 3389ded1e95cb545ac83f5c8194ef4c0dbd43429 (patch) | |
| tree | 5132797b0916b707df13e555597630e7ae53569f | |
| parent | vim_mode: Fix :map with ex-commands. (diff) | |
| download | irssi-scripts-3389ded1e95cb545ac83f5c8194ef4c0dbd43429.tar.gz irssi-scripts-3389ded1e95cb545ac83f5c8194ef4c0dbd43429.zip | |
vim_mode: Fix :mkv[imrc].
| -rw-r--r-- | vim-mode/vim_mode.pl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 065411e..6f219dc 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1719,7 +1719,7 @@ sub ex_mkvimrc {          my $cmd = $map->{cmd};          if (defined $cmd) {              next if $map->{char} eq $cmd->{char}; # skip default mappings -            print $file "$map->{char} $cmd->{char}\n"; +            print $file "map $map->{char} $cmd->{char}\n";          }      } | 
