Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vfmt: Array initializers should be indented #24091

Open
mike-ward opened this issue Mar 30, 2025 · 1 comment
Open

vfmt: Array initializers should be indented #24091

mike-ward opened this issue Mar 30, 2025 · 1 comment
Labels
Bug This tag is applied to issues which reports bugs.

Comments

@mike-ward
Copy link
Contributor

mike-ward commented Mar 30, 2025

Describe the bug

vfmt should indent array initializers further than it does.

Reproduction Steps

.

Expected Behavior

Would prefer:

struct App {
mut:
	text       string
	result     f64
	is_float   bool
	new_number bool
	operands   []f64
	operations []string
	row_ops    [][]string = [
	        ['C', '%', '^', '÷'],
	        ['7', '8', '9', '*'],
	        ['4', '5', '6', '-'],
	        ['1', '2', '3', '+'],
	        ['0', '.', '±', '='],
       ]
}

Current Behavior

Currently:

struct App {
mut:
	text       string
	result     f64
	is_float   bool
	new_number bool
	operands   []f64
	operations []string
	row_ops    [][]string = [
	['C', '%', '^', '÷'],
	['7', '8', '9', '*'],
	['4', '5', '6', '-'],
	['1', '2', '3', '+'],
	['0', '.', '±', '='],
]
}

Possible Solution

No response

Additional Information/Context

No response

V version

V 0.4.10 fcd2eed

Environment details (OS name and version, etc.)

V full version V 0.4.10 da3112e.fcd2eed
OS macos, macOS, 15.3.2, 24D81
Processor 8 cpus, 64bit, little endian, Apple M2
Memory 0.15GB/8GB
V executable /Users/mike/Documents/github/v/v
V last modified time 2025-03-28 21:31:11
V home dir OK, value: /Users/mike/Documents/github/v
VMODULES OK, value: /Users/mike/.vmodules
VTMP OK, value: /tmp/v_501
Current working dir OK, value: /Users/mike/Documents/github/gui/src/examples
env VFLAGS "-path /Users/mike/Documents/github/gui/src
Git version git version 2.49.0
V git status 0.4.10-50-gfcd2eed0 (12 commit(s) behind V master)
.git/config present true
cc version Apple clang version 16.0.0 (clang-1600.0.26.6)
gcc version Apple clang version 16.0.0 (clang-1600.0.26.6)
clang version Apple clang version 16.0.0 (clang-1600.0.26.6)
tcc version tcc version 0.9.28rc 2024-02-05 HEAD@105d70f7 (AArch64 Darwin)
tcc git status thirdparty-macos-arm64 c8df4e27
emcc version N/A
glibc version N/A

Note

You can use the 👍 reaction to increase the issue's priority for developers.

Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.

@mike-ward mike-ward added the Bug This tag is applied to issues which reports bugs. label Mar 30, 2025
Copy link

Connected to Huly®: V_0.6-22482

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs.
Projects
None yet
Development

No branches or pull requests

1 participant