mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-08 06:20:01 -04:00
14 lines
290 B
Go
14 lines
290 B
Go
// https://github.com/nvim-treesitter/nvim-treesitter/issues/2369
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func goodIndent(param string) {
|
|
fmt.Println("typing o here works as expected")
|
|
}
|
|
|
|
func badIndent(
|
|
param string, // this is the difference
|
|
) {
|
|
fmt.Println("typing o here triggers bad indent")
|
|
}
|