From 0c710f75f4058d395cab617fc1edaf50999e3b1e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 15 Nov 2015 22:41:30 +0900 Subject: [PATCH] Prepend [vim-plug] to error messages --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 231073b..6541ace 100644 --- a/plug.vim +++ b/plug.vim @@ -297,7 +297,7 @@ endif function! s:err(msg) echohl ErrorMsg - echom a:msg + echom '[vim-plug] '.a:msg echohl None return 0 endfunction