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

Formatting of functions using => instead of return #359

Open
nordlow opened this issue Jan 23, 2024 · 0 comments · May be fixed by #380
Open

Formatting of functions using => instead of return #359

nordlow opened this issue Jan 23, 2024 · 0 comments · May be fixed by #380

Comments

@nordlow
Copy link

nordlow commented Jan 23, 2024

Can we have sdfmt format

struct S {
	int ________________________________________________________(int x) => x + 1;
}

as

struct S {
	int ________________________________________________________(int x)
	    => x + 1;
}

instead of current

struct S {
	int ________________________________________________________(int x) =>
	x + 1;
}

.

maxhaton added a commit to maxhaton/SDC that referenced this issue Sep 1, 2024
This goes some way to Fix snazzy-d#359, but the result could probably be
improved somewhat with a clever span somewhere.

This feature is presumably only used for things with fairly short names
so one imagines the line wrapping behaviour won't be noticed much
anyway...
@maxhaton maxhaton linked a pull request Sep 1, 2024 that will close this issue
maxhaton added a commit to maxhaton/SDC that referenced this issue Sep 2, 2024
This goes some way to Fix snazzy-d#359, but the result could probably be
improved somewhat with a clever span somewhere.

This feature is presumably only used for things with fairly short names
so one imagines the line wrapping behaviour won't be noticed much
anyway...
maxhaton added a commit to maxhaton/SDC that referenced this issue Sep 2, 2024
This goes some way to Fix snazzy-d#359, but the result could probably be
improved somewhat with a clever span somewhere.

This feature is presumably only used for things with fairly short names
so one imagines the line wrapping behaviour won't be noticed much
anyway...
maxhaton added a commit to maxhaton/SDC that referenced this issue Sep 2, 2024
This goes some way to Fix snazzy-d#359, but the result could probably be
improved somewhat with a clever span somewhere.

This feature is presumably only used for things with fairly short names
so one imagines the line wrapping behaviour won't be noticed much
anyway...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant