AmiriMoha
- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 7
-
Created use a native dart library (package) inside a plugin for dart.
AnsweredI need to use the (analyzer) dart package to analyze dart code and extract dart variables static types to use in a plugin that i'm developing. i tried to use dart analysis server API, but the serve... -
Created what is the PSI data structure responsible for retrieving static types of a language?
Answeredi need to know how intellij idea features like (quick documentation) reach the static types of a language local variables and methods parameters. examples: this is a java local variable and this... -
Created trigger an action button passively or on certain instigator
Answeredi have a plugin that does an action through a button click event, if i want to trigger the same action through multiple instigators, is it possible? for example if i want to trigger the action ever... -
Created Action Button enabled and visible when editor on specific file type.
Answeredi'm trying to make an action button only visible and enabled on "Dart programming language" files only. and this is my update method: @Overridepublic void update(@NotNull AnActionEvent e) { PsiF... -
Edited Jetbrains products inlay hints
Answeredi'm planning on developing a plugin that does an inlay hints just like java in intellij idea or c# in rider but for other language, and i want to see how jetbrains developers implemented the hints ... -
Created intellij plugin development and build.gradle and plugin.xml
Answeredi'm learning intellij plugin development but i can't grasp the REAL different between build.gradle and plugin.xml files for intellij plugin development.. like what are the differences between their...