diff options
| author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2013-12-24 08:40:13 +1100 |
|---|---|---|
| committer | David Symonds <dsymonds@golang.org> | 2013-12-24 08:40:13 +1100 |
| commit | 7413e48d5beeae3fa0b22fecf39cf1db5a1339f7 (patch) | |
| tree | 418fa26bfd525c853c8c3ad0635900ccce6df821 | |
| parent | 41183d015d17ab537287599e2bf72ca1cdeafb55 (diff) | |
| download | go-7413e48d5beeae3fa0b22fecf39cf1db5a1339f7.tar.xz | |
misc/vim: Fix broken quote
R=golang-codereviews, gobot, dsymonds
CC=golang-codereviews
https://golang.org/cl/44960043
| -rw-r--r-- | misc/vim/autoload/go/complete.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/vim/autoload/go/complete.vim b/misc/vim/autoload/go/complete.vim index 8dd43de4ad..a4fa6b6684 100644 --- a/misc/vim/autoload/go/complete.vim +++ b/misc/vim/autoload/go/complete.vim @@ -58,7 +58,7 @@ function! go#complete#Package(ArgLead, CmdLine, CursorPos) if executable('go') let goroot = substitute(system('go env GOROOT'), '\n', '', 'g') if v:shell_error - echomsg '\'go env GOROOT\' failed' + echomsg '''go env GOROOT'' failed' endif else let goroot = $GOROOT |
