From 6e1ae514748972ab62d81207f7eb31a0dd8da6c3 Mon Sep 17 00:00:00 2001 From: jdhao Date: Fri, 13 Aug 2021 01:19:47 +0800 Subject: [PATCH] Fix: remove logging --- autoload/utils.vim | 1 - 1 file changed, 1 deletion(-) 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