Jonathan FV
- Total activity 62
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 19
-
Created Caret "beyond end of line"
I'm working on a plugins that add carets. However, during that process, the primary caret gets changed (I'm not a 100% sure why, though while digging in the code, it seems the last caret added is t... -
Created AppCode doesn't notice the project file has been changed
When I edit the project file (from my plugins), AppCode doesn't take into account my changes.If I restart AppCode, changes are applied. (Technically, what I do is change a header from Public to Pro... -
Created Get current project in AppCode (not the IDE project, the project in a workspace)
For any given file, I'd like to be able to know to which project it's attached. I have a workspace with multiple project, so for a PsiFile, how can I know in which project it is? I would also like ... -
Created Caret on a new empty line
I'm creating a new method, and adds a code block with an empty line:final PsiCodeBlock codeBlock = factory.createCodeBlockFromText("{\n\n}", newMethod);PsiCodeBlock newMethodCodeBlock = PsiTreeUtil... -
Created Customize "Generate code" popup
Is there any possibility to customize the Code => Generate popup? I would like for example to add "main", which would add to my current class a public static void main(String[] args) ... -
Created Getting current project in an inspection
I have an inspection where I'd like to use PhpIndex (in PhpStorm).For now, I use ProjectManager.getInstance().getOpenProject()[0] to get project in my visitor, but that's not quite good... Would an... -
Created AppCode inspection
Hi,I'm trying to add my own inspection to AppCode, but as soon as my plugins is loaded, the inspection section (in preferences) stops responding (when I choose it, display is not refreshed and show... -
Created Adding elements to PSI in PhpStorm
I would like to add elements to PSI in PhpStorm (class field, php doc comment).I've seen examples I've tried to bas me on, but the use PsiManager.getElementFactory(), which is missing in my version... -
Created Centering form
I'm creating a form (bbaaddd JFrame based, if anyone can offer something nicer, please do) for a goto mecanism.As such, I'd like it to appear at the same place as other go to dialog appear, ie more... -
Created PHP Plugins (PSI)
Since PhpStorm 2 is out, I'd like to develop one or more plugins for it.Is it possible? For now, I don't need anything but PSI.