aBothe / Mono-D

D Add-In for MonoDevelop
http://wiki.dlang.org/Mono-D
Other
113 stars 26 forks source link

Document Outline - move return type #566

Closed etcimon closed 9 years ago

etcimon commented 9 years ago

It would be nice to have the option of moving the return type after the function arguments, because it misaligns the function names and makes it harder to find the function by name quickly.

e.g. size_t basic_test_handshake(RandomNumberGenerator rng)

would be:

basic_test_handshake(RandomNumberGenerator rng) -> size_t

aBothe commented 9 years ago

I'd rather hide the parameters optionally instead - introducing other behaviour could confuse users. Furthermore, this option might not be found at all, so it's probably not worth implementing it

etcimon commented 9 years ago

Meh, you're right. I guess the document ouline could use some work on the monodevelop side.