Olof Kraigher

Results 157 comments of Olof Kraigher

I agree with the approach.

Yes this is probably a good first issue to work on if you want to contribute.

I do not know anything about sublime but conceptually the only thing the editor needs to know about the server is where the binary is located. VHDL LS communicate with...

I realize I might not have answered your main question. Are you asking about adding a sublime plugin to this repository? I think it is better that such plugins each...

Yes running a language server is night and day vs. running an external tool on save. You get errors instantly as you type and also all the semantic code navigation...

You need to check that also the semantic analysis works as well by doing goto-definition. VHDL LS will can only give you syntax errors if it cannot find the project...

The server announces its capabilities to the client. We do not support rename yet but goto definition / declaration as well a find references is supported and thus announced and...

My current thinking is: - Traverse the entire AST and build DeclarativeRegions. The DeclarativeRegions only live temporarily in this pass and are thrown away afterwards. Public declarative regions such as...

The on-demand analysis is implemented in my local repository. I will most likely push it today. This method will still allow enough parallelism. You can always start analysis for many...

I pushed the first version of the on-demand analysis now.