On Thursday, January 23rd, 2025 at 09:56, Eli Zaretskii wrote: > > > > Date: Thu, 23 Jan 2025 13:09:45 +0000 > > > From: Gerard Vermeulen gerard.vermeulen@posteo.net > > > > Hi, > > > > Automatic indenting when typing works in go-ts-mode for grouped > > var declarations like: > > > > var ( > > a = 1 > > b = 2 > > ) > > > > but not for type declarations (taken from > > https://github.com/uber-go/guide/blob/master/style.md#group-similar-declarations > > ) like: > > > > type ( > > Area float64 > > Volume float64 > > ) > > > > where I have to add the tabs (or spaces) myself. > > I tried to change "type_spec" to "type_spec_list" in the defvar > > go-ts-mode--indent-rules expression, but that did not fix it. > > > > I am using a recent 30.0.93 git checkout. > > > > Can it be fixed? > > > Randy and Yuan, could you please look into this? Thanks for the report. The attached patch fixes it for me.