Jonathan FV
- 活动总数 62
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 19
-
创建于 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... -
创建于 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... -
创建于 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 ... -
创建于 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... -
创建于 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) ... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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.