0

I have the following vimrc for go. If I press :w I will get

and than I do :make

$ vim closure.go 

make: *** No targets specified and no makefile found.  Stop.

Press ENTER or type command to continue
[No write since last change]
# _/home/x
./closure.go:27: undefined: fmt.P
./maps.go:5: main redeclared in this block
    previous declaration at ./closure.go:23
./slices.go:5: main redeclared in this block
    previous declaration at ./maps.go:5

Press ENTER or type command to continue

After pressing ENTER Vim looks like that enter image description here

Unfortunately, I do not the following output enter image description here

What did I do wrong?

user977828
  • 7,259
  • 16
  • 66
  • 117

1 Answers1

0

Apparently Syntastic uses the location-list (:lwindow) and not the quickfix (:cwindow).

kzh
  • 19,810
  • 13
  • 73
  • 97