Reputation: 1595
In our project the entire workflow is through xmls and there is some cryptic but systematic way to use specific syntax to achieve tasks. For example there is syntax to create objects, setting/getting attributes etc. But it is difficult for a beginner to be familiar with this all.
I want to know if it is possible to write some plugin that helps in things like auto completion or suggestion like normal java plugins or is it that plugins can be written for only compiler/interpreter based languages ?
Upvotes: 0
Views: 30
Reputation: 111217
You can write editors for any sort of file. If the file is text based the Eclipse text editor APIs provides support for things like auto completion.
One of the examples available in the `New / Plug-in project' wizard creates a XML editor with some of theses features already included.
Upvotes: 1