N4tus

Results 12 comments of N4tus

seems like just updating the CMakesLists.txt to use Qt6 just works. The changes that I made however also remove Qt5 so using a different branch for that would properly be...

When i try to add eslint as language server it complains that it couldn't read the tsconfig.json file. It searched in the wrong folder. My eslintConfig is part of the...

I had a similar issue where `git rev-parse HEAD` failed to run, because the folder of the repository was not considered a save directory. In this case, just run`git config...

Would these types require a separate type-checking phase or would they resemble runtime type assertions? Personally I think type assertions would be enough. They could be composed of primitive types...

One thing I would like to mention is that OPs examples are for general purpose languages, which typst is not. There is not really a need to check a types...

2022-08-13T16:46:23.539 helix_lsp::transport [INFO] -> ```json { "jsonrpc": "2.0", "method": "initialize", "params": { "capabilities": { "textDocument": { "codeAction": { "codeActionLiteralSupport": { "codeActionKind": { "valueSet": [ "", "quickfix", "refactor", "refactor.extract", "refactor.inline", "refactor.rewrite",...

Astro-ls did indeed expected an additional setting called `environment` (type is `"node" | "browser"`). A PR (https://github.com/withastro/language-tools/pull/373) was already made to default its value to `"node"` if it is missing.

In an normal expression needing a clone is not much of a deal breaker. The call neatly slots into the expression where it is needed. If you forget it the...

> I vaguely remember reading some ideas about a postfix super syntax, which could maybe make this pattern more compact: > > ```rust > { > let x = x.clone();...

> @N4tus Good point. Quite honestly, not sure. But perhaps `x.clone().super` is a more accurate then? Because my high-level explanation for that would then be: The expression that comes before...