diff options
Diffstat (limited to 'vim-mode')
-rw-r--r-- | vim-mode/vim_mode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 40a5a14..ab948c3 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -926,7 +926,7 @@ sub _matching_windows { item => undef, ratio => $win_ratio, text => $window->{name} }; - print ":b $window->{name}: $ratio" if DEBUG; + print ":b $window->{name}: $win_ratio" if DEBUG; } # Matching Window item names (= channels). foreach my $item ($window->items()) { @@ -943,7 +943,7 @@ sub _matching_windows { item => $item, ratio => $item_ratio, text => $item->{name} }; - print ":b $window->{name} $item->{name}: $ratio" if DEBUG; + print ":b $window->{name} $item->{name}: $item_ratio" if DEBUG; } } } |