aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-08-13 01:19:47 +0800
committerjdhao <jdhao@hotmail.com>2021-08-13 01:19:47 +0800
commit6e1ae514748972ab62d81207f7eb31a0dd8da6c3 (patch)
tree09220d89b49180ca9709b6a24235ea396e875eb4 /autoload
parent70d7f3aea5d8de71fc34a84b8b5b20c8bb01d077 (diff)
Fix: remove logging
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