Hallo,
I’m new to sublime plugin development. I have some experience in developing plugins for eclipse and IntelliJ and I’m really impressed by the performance of Sublime and I hope to make it work perfectly with my language.
I have a project which contains many large files written in a groovy dsl. The files look like this:
DEFINITION_A {
DEFINITION_B
DEFINITION_C
}
and in another file:
DEFINITION_B {
....
}
DEFINITION_C {
....
}
My first goal is to auto complete all available definitions in all files. What is the right way to do that. Can I override the autoComplete command or is there a way to contribute completions? Thank you for any help and code examples,
Regards, Sebastian