Is this possible to make this plugin?

Hi, I'm new to Java language and plugin development and I'm going to make plugin that shows i18n string.

Here is the step:

1. mouse hover to i18n key 'greetings' text in javascript or html file

2. find 'greetings' key in specific json file and returns value

3. then a little tooltip at the upper of mouse pointer shows i18n values like ' en - hello, es - hola, ja -こんばんは'

 

Is this possible with plugins? If it is, what packages should I check?

Thanks.

 

0
1 comment
Official comment

All this functionality is possible using PsiReference and DocumentationProvider. See http://www.jetbrains.org/intellij/sdk/docs/basics/architectural_overview/psi_references.html as a starting point.

Please sign in to leave a comment.