Jens Fischer

Results 175 issues of Jens Fischer

It would be much more useful to sort showcase entries by the date they were added than to sort them alphabetically. For this, a `date` field would have to be...

enhancement
showcase

That way, you can link to an invidual section.

enhancement

Preferably with a QR-code for convenient / quick download.

enhancement

Would be nice to run a fork of try.haxe.org that includes flixel + openfl to easily share compilable code snippets. https://github.com/clemos/try-haxe

enhancement

Display some high-quality / new demos on top

enhancement
demos

Array wrapping behavior is a bit counter-intuitive here. With a relatively short array literal, the formatting is kept as-is: ```haxe class TestMain { static function main() { UTest.run([ new ArrayHelperTest(),...

enhancement
wrapping

Correct formatting: ```haxe class Main { static function main() { f7 = (f:Int->Int) -> f; f7 = maybe() ? f -> f : f -> g -> f(g); } }...

bug
whitespace

```haxe typedef CallHierarchyIncomingCallsParams = WorkDoneProgressParams & PartialResultParams & { var item:CallHierarchyItem; } ``` Turns into: ```haxe typedef CallHierarchyIncomingCallsParams = WorkDoneProgressParams & PartialResultParams & { var item:CallHierarchyItem; } ``` I think...

enhancement
wrapping

Not even syntax highlighting can deal with this properly, so this may not be very high-priority. :) ```haxe #if (haxe_ver >= "4.0.0") class FlxTypedEmitter extends FlxTypedGroup #else class FlxTypedEmitter extends...

bug
emptylines

The empty line is removed here: ```haxe class Main { static function main() { if (foo) bar; } } ``` But not here: ```haxe class Main { static function main()...

bug
emptylines