Jonathan FV
- 活动总数 62
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 19
-
创建于 Add "Override methods" / "Implement methods" for a language
I've got a language plugins, for which I would like to add those functionalities. Could someone give me some pointers at how to do so (currently the 2 menu items are grayed in the "Code" menu) ? (e... -
创建于 SyncEdit
已回答I'm back at working on my "Sync edit" plugins. It works in various circumstances but fails in others. I'm using "childReplaced" event, "caretPositionChanged" event, "documentChanged" event. So fa... -
创建于 Highlight error only in a portion of a token
已回答Here's a piece of code from a LocalInspection: holder.registerProblem(new ProblemDescriptorImpl(element, element, "Suspicious Dollar", new LocalQuickFix[] {}, ProblemHighlightType.WEAK_WARNING, fal... -
创建于 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...