aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-10-15 21:14:53 +0000
committerSimon Ruderich <simon@ruderich.org>2010-10-15 21:14:53 +0000
commiteb90c4d2d750c60c051190f3df1242e36f9903f7 (patch)
tree77d73db8a8ca0cd27effcee59c67576d6bc5f039 /vim-mode
parentMerge remote branch 'origin/dev' (diff)
downloadirssi-scripts-eb90c4d2d750c60c051190f3df1242e36f9903f7.tar.gz
irssi-scripts-eb90c4d2d750c60c051190f3df1242e36f9903f7.zip
vim_mode: Display partial commands in carret notation.
Diffstat (limited to 'vim-mode')
-rw-r--r--vim-mode/vim_mode.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl
index cce0700..f6af710 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -2032,7 +2032,7 @@ sub vim_mode_cb {
} else {
$mode_str = '%_Command%_';
if ($partial_command) {
- my $p_copy = $partial_command;
+ my $p_copy = _parse_mapping_reverse($partial_command);
$p_copy =~ s/\\/\\\\\\\\/g;
$mode_str .= " ($p_copy)";
}