nvim-treesitter/tests/indent/go/issue-2369-newline.go
Akin Sowemimo bca65c068b test(go): add cases for newlines de-indentation
test(go): combine new indent test cases

test(go): add incorrect indent after var closing )

this case does not work correctly already so add that in since this PR
does not address that case

test(go): set current lines in indent test

test(go): simplify test case
2022-04-18 14:11:02 +02:00

8 lines
144 B
Go

// https://github.com/nvim-treesitter/nvim-treesitter/issues/2369
package main
import "fmt"
func new_line() {
fmt.Println("Hello, World!")
}