While developing PromQL language support for monaco-editor, I discovered that the languages definitions can be found in this repository: https://github.com/microsoft/monaco-languages
However, I am struggling to locate where the autocompletion definitions for these languages are stored.
Although I have successfully added some custom completions myself, I am now eager to find out where the built-in completion is situated?
Edit: I have noticed that certain languages have dedicated repositories housing their respective completion items, such as:
- typescript https://github.com/microsoft/monaco-typescript
- css https://github.com/microsoft/monaco-css
- ...
My curiosity now lies in exploring how other languages like Java, Python, etc., handle autocompletions. Where can I find similar repositories for these languages?