Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Jon Akhtar
Total activity
383
Last activity
July 30, 2019 07:31
Member since
September 27, 2010 19:42
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
142
Activity overview
Posts (42)
Comments (199)
Sort by recent activity
Recent activity
Votes
Created
April 13, 2014 23:43
A little digging comes up with: { "pluginId": "amailp.intellij.robot", "implementationName": "*.robot", "bundled": false }, { "pluginId": "com.millennialm...
Community
IntelliJ IDEA Open API and Plugin Development
For a custom language plugin, how can my plugin be listed when a user opens a file and the dialog "Plugins supporting files with extension *.foo are found" comes up?
0 votes
Created
April 13, 2014 23:49
I can't answer for Grammar-Kit, but it is possible if you have a PsiBuilder.There is a WhitespaceSkippedCallback you can set, but I would say that if newlines are significant in your language they ...
Community
IntelliJ IDEA Open API and Plugin Development
Processing newlines
0 votes
Created
April 14, 2014 00:25
I do it in my Lua plugn because in one case a newline is used by the Lua 5.1 parser to resolve an ambigutity.I let newlines be part of the whitepsace set, but used the PsiBuilder interface to regis...
Community
IntelliJ IDEA Open API and Plugin Development
Processing newlines
0 votes
Created
May 11, 2014 04:51
The first thing I would suggest is to install the plugin PsiViewer from the plugin repositoiry.I show the psi tree for the variable "files"In the attribute inspector, I can see the type property is...
Community
IntelliJ IDEA Open API and Plugin Development
Finding PsiTypeElement from PsiReferenceExpression
0 votes
Created
June 28, 2014 22:25
Why not use public void registerFix(@NotNull IntentionAction fix);Just implement your fix as an IntentionAction.Perhaps you can get some inspiration on how to use an external annotator for inspecti...
Community
IntelliJ IDEA Open API and Plugin Development
How to register LocalQuickFix with ExternalAnnotator?
0 votes
Created
July 24, 2014 15:28
As noted here http://devnet.jetbrains.com/message/5503397#5503397"On any change to a text, IDEA builds a parallel PSI tree with a newly created PsiFile at the top, then builds a diff by comparing i...
Community
IntelliJ IDEA Open API and Plugin Development
Call to Annotator#annotate()... only for changed PsiElement ?
0 votes
Created
July 01, 2014 02:28
http://www.jetbrains.com/idea/webhelp/adding-plugins-to-enterprise-repositories.html
Community
IntelliJ IDEA Open API and Plugin Development
custom intellij plugin repository
0 votes
Created
July 03, 2014 14:44
You should read this information:http://confluence.jetbrains.com/display/IDEADEV/Persisting+State+of+Components
Community
IntelliJ IDEA Open API and Plugin Development
Should I prefix properties in PropertiesComponent?
0 votes
Created
July 05, 2014 19:18
<lang.findUsagesProvider language="Lua" implementationClass="com.sylvanaar.idea.Lua.findUsages.LuaFindUsagesProvider"/>Here is the one I implement in my plugin.Did you use...
Community
IntelliJ IDEA Open API and Plugin Development
Mark element at caret and FindUsage missing a resolved element
0 votes
Created
July 29, 2014 02:12
Just wanted to say. That the source code is the real documentation. That is why it is important for you to check it out, you need to read it and become familar with it because it contains examples ...
Community
IntelliJ IDEA Open API and Plugin Development
Tons of doubts with plugin development help
0 votes
«
First
‹
Previous
Next
›
Last
»