mirror of
https://github.com/amix/vimrc
synced 2025-08-16 12:25:01 +08:00
Updated plugins
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
package config
|
||||
|
||||
func Example() {
|
||||
foo()
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
// +build constrained
|
||||
|
||||
package config
|
||||
|
||||
// foo is constrained and this comment exists to make the line numbers different than foo.go
|
||||
func foo() {
|
||||
println("foo")
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
// +build !constrained
|
||||
|
||||
package config
|
||||
|
||||
func foo() {
|
||||
println("foo")
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
module config
|
||||
|
||||
go 1.13
|
@ -0,0 +1,6 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
notafunc()
|
||||
println("vim-go")
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("vim-go"
|
||||
}
|
Reference in New Issue
Block a user