主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Svetlana Zemlyanskaya
活动总数
44
最后的活动
2019年03月29日 15:00
成员加入日期
2013年10月11日 14:15
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
14
活动概览
帖子(0)
评论(30)
按最近的活动排序
最近的活动
投票数
创建于
2019年03月29日 15:00
@Mikhail, "Listen for debug connection" is an action in PhpStorm which starts listening for all incoming Xdebug connections on port configured in `Settings | Languages & Frameworks | PHP | Debug` -...
社区
IntelliJ IDEA Open API and Plugin Development
Creating a custom debug configuration for PhpStorm
0 票
创建于
2017年06月12日 12:15
正式评论
Hi David, sorry for the long response. You've solved your problem, haven't you? The behavior looks consistent to me, `getContainingClass()` is not equals to null in both real execution and tests wh...
社区
IntelliJ IDEA Open API and Plugin Development
Unit test: checking for a NPE where exists an error before
0 票
创建于
2017年05月02日 10:14
In your pattern, you write that function call should be a parent of a string not a parent of a parameter list. It would be better to use: psiWithParentString.withSuperParent(2, psiWithTypeParamList...
社区
IntelliJ IDEA Open API and Plugin Development
Advanced Php element pattern
0 票
已编辑于
2017年04月28日 12:23
正式评论
You need to provide completion inside a string, so instead of psiElement().withElementType(PhpElementTypes.STRING). you need psiElement().withParent(StringLiteralExpression.class).
社区
IntelliJ IDEA Open API and Plugin Development
Advanced Php element pattern
0 票
创建于
2017年04月25日 15:50
Great! I'm happy to help.
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
创建于
2017年04月25日 15:24
I see, 'GetTemplate' is a function, not a method, hence you need to adjust ''GetTemplateReferenceContributor'': @Overridepublic void registerReferenceProviders(@NotNull PsiReferenceRegistrar regist...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
创建于
2017年04月25日 14:53
Breakpoints should work fine. Please make sure you registered reference contributor in plugin.xml. Also this method is called lazy, so you need to placed your cursor inside templateName string para...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
创建于
2017年04月25日 13:17
> Are there any examples of that, other than on your website? Yes, see the section "Define a reference" in http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/reference_con...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
创建于
2017年04月25日 12:55
I guess word reference was not clear? In terms of Intellij plugin development, it's a link between different psi elements. Here you can read more about this term: http://www.jetbrains.org/intellij/...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
创建于
2017年04月25日 11:23
正式评论
Have you tried to implement "PsiReferenceContributor"? It's very powerful technic which allows you to provide custom navigation from one element to another. In your case, it makes sense to add a r...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 票
下一页
›
最后
»