We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b19e6c + acab9b3 commit 32f9d2bCopy full SHA for 32f9d2b
autoload/go/cmd.vim
@@ -18,8 +18,9 @@ function! go#cmd#Build(bang, ...)
18
let goargs = map(copy(a:000), "expand(v:val)")
19
20
" escape all shell arguments before we pass it to make
21
- let goargs = go#util#Shelllist(goargs, 1)
22
-
+ if !has('nvim')
+ let goargs = go#util#Shelllist(goargs, 1)
23
+ endif
24
" create our command arguments. go build discards any results when it
25
" compiles multiple packages. So we pass the `errors` package just as an
26
" placeholder with the current folder (indicated with '.')
0 commit comments