主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Peter Gromov
活动总数
2258
最后的活动
2023年05月09日 12:44
成员加入日期
2008年07月25日 18:59
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
739
活动概览
文章(0)
帖子(3)
评论(1516)
按最近的活动排序
最近的活动
投票数
创建于
2014年04月28日 18:34
Do you have accesses from multiple threads here? I'm under impression you don't, so synchronization is not needed.
社区
IntelliJ IDEA Open API and Plugin Development
fileClosed vs projectClosed order
0 票
创建于
2014年04月24日 14:20
Hi,Live templates are code snippets, possibly with some placeholders, inserted into editor using Meta+J or (since IDEA 13.1) just code completion. They are invoked by entering their prefix.Intentio...
社区
IntelliJ IDEA Open API and Plugin Development
Intentions versus live templates versus actions
0 票
创建于
2014年05月29日 21:10
If you just don't want to see the red warning, you can suppress it with HighlightErrorFilter/HighlightInfoFilter extensions.If you don't want Python highlighter to issue those warnings, then it sho...
社区
IntelliJ IDEA Open API and Plugin Development
Interaction with outer language for template language
0 票
创建于
2014年07月21日 17:10
The default matching prefix starts for some reason from the beginning of the line. By debugging in com.intellij.codeInsight.completion.impl.CompletionServiceImpl#createResultSet, you can check why....
社区
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 票
创建于
2014年07月23日 14:58
Thanks! So the asterisk is the part of prefix, and it's replaced. Is this the desired behavior? If not, you should probably change the prefix so that it doesn't include the asterisk.
社区
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 票
创建于
2014年07月28日 15:59
withPrefixMatcher creates a new CompletionResultSet and doesn't change the old one. You should use it like this: resultSet = resultSet.withPrefixMatcher(new PlainPrefixMatcher(""));
社区
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 票
创建于
2014年07月31日 08:12
It's an IDE-wide feature that live templates are suggested so please think again whether to interfere with it. But your contributor can register itself before the live template one add call resultS...
社区
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 票
创建于
2014年07月21日 17:07
Please check what happens with the items after you psas them to CompletionResultSet.addElement. Are they matched against an empty prefix, or is there some other prefix in operation?
社区
IntelliJ IDEA Open API and Plugin Development
Compeletion provider not working properly
0 票
创建于
2014年07月30日 12:45
Things are clarified in http://devnet.jetbrains.com/thread/455907?tstart=0, the items are matched against a non-empty prefix "* print ""
社区
IntelliJ IDEA Open API and Plugin Development
Compeletion provider not working properly
0 票
创建于
2014年09月23日 17:34
Have you tried com.intellij.openapi.vfs.VfsUtilCore#getRelativePath(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFile)?
社区
IntelliJ IDEA Open API and Plugin Development
How to include specific PsiFile (c++)
0 票
«
第一页
‹
上一页
下一页
›
最后
»