diff options
-rw-r--r-- | vim-mode/vim_mode.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index aacaed5..6eaf644 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -2020,6 +2020,7 @@ sub handle_command_cmd { # Ex-mode commands can also be bound in command mode. Works only if the # ex-mode command doesn't take any arguments. if ($cmd->{type} == C_EX) { + print "Processing ex-command: $map->{char} ($cmd->{char})" if DEBUG; $cmd->{func}->(); return 1; # call _stop() } |