From dd2a13642cfb17b22ff95c72e16a990b839943cf Mon Sep 17 00:00:00 2001 From: Fatih Arslan Date: Thu, 24 Nov 2016 19:54:10 +0300 Subject: [PATCH] path: use echom so it's showed when used completion Closes #1045 --- autoload/go/path.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/go/path.vim b/autoload/go/path.vim index 3b09160df7..a9b74e97a2 100644 --- a/autoload/go/path.vim +++ b/autoload/go/path.vim @@ -161,7 +161,7 @@ function! go#path#CheckBinPath(binpath) abort " just get the basename let basename = fnamemodify(binpath, ":t") if !executable(basename) - echo "vim-go: could not find '" . basename . "'. Run :GoInstallBinaries to fix it." + echom "vim-go: could not find '" . basename . "'. Run :GoInstallBinaries to fix it." " restore back! let $PATH = old_path return ""