I’m new in Ada and wanting to learn more about it.
However, there is no language support yet for Zed, my daily text editor.
Writing some codes with no syntax highlighting is kinda painful for me.
Thus, I published Zed Ada Language v0.2.0 extension so I can code comfortably!
This extension provides syntax highlighting, auto formatter/prettier when saving a file, code completion, etc. All of these are possible thanks to Tree-sitter and Ada Language Server. It is still far from complete and I’m planning to improve it further. I hope this extension will be useful.
IMHO these are the kind of small details that Ada sometimes lacks in comparison to other languages and communities. So thanks for adding Ada support to Zed!
Nice to see you are using the existing Ada tree-sitter grammar. Would you care to suggest pull requests so that we can have a single reference grammar for people who want to use the grammar for other editors ? I am very open to merging such pull requests.
(although on first sigh, it seems your fork doesn’t include any new commits ?)
I initially forked your repository and thought there is a need for me to change something. Apparently, upon learning how Zed extension works it is not necessary to do so. I can just query the parse tree under languages/ada directory. That’s why there is no new commit coming from me.
Thus, I’m planning to change the config and just use your repository so I don’t need to “maintain” another tree-sitter grammar for Ada. As for single reference grammar, we can discuss it in a separate. Thought?