Timur

Results 46 comments of Timur

Completely and totally upvote this. Why is it still not merged?

Thanks for pointing this. Indeed comparison (slightly changed though) returns `true` ```haxe trace("C:\\game\\export\\windows\\я"); trace(Sys.getCwd()); trace(Sys.getCwd() == "C:\\game\\export\\windows\\я/"); ``` ``` src/Main.hx:15: C:\game\export\windows\С' src/Main.hx:16: C:\game\export\windows\С'/ src/Main.hx:17: true ``` I will do more...

>Preferences > Cursors? Thanks for the hint! Didn't even think to look for mouse settings. My current setting for "Brush Preview" is "Full Preview". If I change it it to...

With "Full Preview" and disabled dynamics ![image](https://github.com/aseprite/aseprite/assets/9349164/3c455dc3-da52-48f3-93b6-dfb2a54c73c3) it also works as expected.

Just want to mention I don't find it awkward when using with `switch`: ```haxe menu.onMenuEvent = (e, id) -> { switch ([e, id]) { case [it_fire, 'create_lobby']: // do creation...

I'd like to try, if there is working autocompletion for Haxe code and html tags. Last time I tried coconut, autocompletion in VSCode was bad: it was either very slowly...

Actually, it is possible to enable emmet support for haxe files. 1. F1 2. Open Settings JSON 3. Add this setting and save ``` "emmet.includeLanguages": { "haxe": "html" } ```...

The bug appears when the cycle is interrupted before the iterator reaches the end of the list and sets the internal pointer to the beginning. So it is need to...

>I don't agree with using the templateName arg to specify the source path Why not? Using the same arg as a source for the template (path or name) looks natural...

>how is it natural to use an arg for a purpose completely unrelated to it's name So, we are talking about naming here. It could be named like `template-source` then....