type go/printer.Config

9 uses

	go/printer (current package)
		nodes.go#L1729: 	cfg := Config{Mode: RawFormat}
		printer.go#L55: 	Config
		printer.go#L97: func (p *printer) init(cfg *Config, fset *token.FileSet, nodeSizes map[ast.Node]int) {
		printer.go#L1305: type Config struct {
		printer.go#L1312: func (cfg *Config) fprint(output io.Writer, fset *token.FileSet, node any, nodeSizes map[ast.Node]int) (err error) {
		printer.go#L1377: func (cfg *Config) Fprint(output io.Writer, fset *token.FileSet, node any) error {
		printer.go#L1387: 	return (&Config{Tabwidth: 8}).Fprint(output, fset, node)

	go/format
		format.go#L39: var config = printer.Config{Mode: printerMode, Tabwidth: tabWidth}
		internal.go#L100: 	cfg printer.Config,