主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Imants Cekusins
活动总数
410
最后的活动
2024年06月25日 06:27
成员加入日期
2015年07月30日 11:35
关注
0 名用户
关注者数
0 名用户
投票数
15
订阅数
108
活动概览
帖子(12)
评论(275)
按最近的活动排序
最近的活动
投票数
创建于
2015年10月17日 07:52
Hello,in RESOLVECompletionContributoryou call extend .withElementType(ResTypes.IDENTIFIER)ResTypes.IDENTIFIER is only 1 element type, right?I'd try this:change RESOLVECompletionContributor so that ...
社区
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 票
创建于
2015年10月17日 12:58
well it appears that the reason completion is not triggered is : some element type does not trigger completion, when it should.I suggest to Capture additional element types.let's say, your symbol i...
社区
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 票
创建于
2015年10月17日 15:47
well if it works, this is all that matters ;)I do not understand bnf well. Particularly, what is this "identifier" thingy. in this example:http://cui.unige.ch/db-research/Enseignement/analyseinfo/A...
社区
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 票
创建于
2015年10月17日 16:17
if this "identifier" were derived type (defined in other terms), I would run "extend" with each base type.e.g.1) private static PsiElementPattern.Capture<PsiElement> usesSpec() { return psiE...
社区
IntelliJ IDEA Open API and Plugin Development
completion on non-dot qualifiers
0 票
创建于
2015年11月14日 08:37
> .. It worksThat's what matters. Well done.
社区
IntelliJ IDEA Open API and Plugin Development
How to Highlight one line in EditorTextField
0 票
创建于
2015年11月12日 09:20
> folding does not allow the injected text to contain multiple linesThanos, you can adjust folded region to include multiple lines. You can also group folded regions.experiment with this FoldingDes...
社区
IntelliJ IDEA Open API and Plugin Development
Multiline folding/virtual text
0 票
创建于
2015年11月09日 17:39
Hello Gregor,I may misunderstand how bnf works but here is my view of it:Complex elements are usually named lowercaseComplex elements are defined in terms of 'leaves' which are named uppercase.Leav...
社区
IntelliJ IDEA Open API and Plugin Development
Language Plugin: Use specific rule as elementType
0 票
创建于
2015年11月10日 10:30
{ tokens = [ id = "regexp:\p{Alpha}\w*" ] } // [...] var_def ::= 'var' var_name var_name ::= idcould you post a link to the tutorial, please?
社区
IntelliJ IDEA Open API and Plugin Development
Language Plugin: Use specific rule as elementType
0 票
创建于
2015年11月19日 10:19
Hello Szymek,why not implement lang.foldingBuilder extension point?http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/folding_builder.html
社区
IntelliJ IDEA Open API and Plugin Development
making <remove> .. </remove>-wrapped code look like a comment (JSF syntax coloring)
0 票
创建于
2015年11月19日 19:22
looks like PsiTreeUtil.getParentOfType returns PsiElement subclass: public static <T extends PsiElement> T getParentOfType(@Nullable PsiElement element, @NotNull Class<T> aClass) Are you using Psi...
社区
IntelliJ IDEA Open API and Plugin Development
How to convert a PsiElement to a PsiClass
0 票
«
第一页
‹
上一页
下一页
›
最后
»