AlexHaxe

Results 141 comments of AlexHaxe

seems to work fine here (HTML5 target): ![FNF FreeplaySelectState completion](https://user-images.githubusercontent.com/7204032/211667349-72163744-d700-45ad-b94e-fc5db11a1cb1.png) are you sure everything is setup correctly, can you compile from CLI and vscode. does restarting Haxe languageserver or vscode...

well, having invalid syntax in a file and expecting completion, hover or other compiler services to work is quite optimistic. if the compiler complains about syntax errors, you need to...

seems like the hover request didn't return a proper `Range` object (with `start` field being null or non-existant). I think a server recording would help identify the issue, which either...

not when talking to Haxe: https://api.haxe.org/haxe/display/HoverResult.html the whole hover result might be null, but vshaxe checks for that. if it's not null then there should be a valid `Range` with...

I can see some usefulness in having some sort of suggestions when working with strings, although repetition of string literals usually is an indicator of something needing a refactoring, e.g....

I guess if you only wanted string completion in the same file then that could be done by vshaxe. I was thinking more about completing strings from all over your...

can confirm it also happens on Linux. looks like a case of byte offsets used as character positions.

current workaround: use `"editor.autoClosingBrackets":"never"`

formatter will go beyond your project root up until your filesystem's root folder in order to find `hxformat.json` settings to apply to your file (because you could have an overarching...

maybe I was on a wrong track, your initial post had a stack trace that indicated a problem with organize imports and formatting, which might be gone now that you...