mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
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
8 lines
144 B
Go
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!")
|
|
}
|