language API question
Hello!
I want to write a language plugin for IDEA.
Is information at
http://www.jetbrains.com/idea/plugins/developing_custom_language_plugins.html
outdated?(I use 7.x IDEA) Which new features of API I must implement to
support my plugin?
Thanks,
Anastasiya
Please sign in to leave a comment.
Hello anastasiya.dremina@gmail.com,
For IDEA 7, this information is mostly accurate. There are some new APIs
like Parameter Info which aren't documented there, but you should be able
to get pretty far by implementing things which are documented and by looking
at existing open-source language plugins.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Oooo... Tell us where to look for more info about ParameterInfo!
Thanks,
Kurt Christensen
Hello Kurt,
com.intellij.lang.parameterInfo.ParameterInfoHandler
The API in its current form is a bit confusing, so it's very likely to change
in IDEA 8.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"