aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
Diffstat (limited to 'autoload')
-rw-r--r--autoload/utils.vim1
1 files changed, 0 insertions, 1 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim
index c573a48..4077be2 100644
--- a/autoload/utils.vim
+++ b/autoload/utils.vim
@@ -172,7 +172,6 @@ endfunction
" Redirect command output to a register for later processing.
" Ref: https://stackoverflow.com/q/2573021/6064933 and https://unix.stackexchange.com/q/8101/221410 .
function! utils#CaptureCommandOutput(command) abort
- echomsg "command is" a:command
redir @m
execute a:command
redir END