主页
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年09月02日 14:47
ok how about this:Runnable r = ()-> EditorModificationUtil.insertStringAtCaret(editor, string); WriteCommandAction.runWriteCommandAction(project, r);
社区
IntelliJ IDEA Open API and Plugin Development
Write access is allowed inside write-action only (see com.intellij.openapi.application.Application.runWriteAction()
2 票
已编辑于
2016年09月23日 14:48
for fixed (predefined) strings, users may configure Live Templates. Settings Editor Live Templates also note the By default expand with ... options. for a custom language, a liveTempl...
社区
IntelliJ IDEA Open API and Plugin Development
Configurable code completion list in custom language
1 票
创建于
2016年09月16日 12:39
why are "antlr" and "mgen" underlined? any messages when you hover over them? could you post links to filetype class code?
社区
IntelliJ IDEA Open API and Plugin Development
Failed to add support for multiple languages in one plugin
1 票
已编辑于
2016年09月06日 18:58
Idea is primarily a code text editor. What will happen to parsed Psi tree? Is it going to be displayed as text in editor window? Edited, too? Saved back to binary? BTW about purpose of lexer and pa...
社区
IntelliJ IDEA Open API and Plugin Development
create psi from binary file
1 票
创建于
2015年09月19日 08:56
to prevent the cast error, before casting an element, you could check its type first:element instance of XSYMMETHODor (element.class.isAssignableFrom(XSYMMETHOD.class)|| XSYMMETHOD.class.isAssignab...
社区
IntelliJ IDEA Open API and Plugin Development
Code Completion - get context in which is method called
1 票
创建于
2016年01月16日 19:28
(how to) listen to "file opened" event with MessageBus :public class FileOpenListenerA implements FileEditorManagerAdapter { @Override public void fileOpened(@NotNull FileEditorManager manager, ...
社区
IntelliJ IDEA Open API and Plugin Development
What is 'message bus' and how to use it?
1 票
创建于
2015年09月18日 18:12
this seems ok:PsiElement element = parameters.getPosition().getParent();now you can call element.getParent().getParent()... until you get up to Function PsiElementthen you could call PsiTreeUtil.c...
社区
IntelliJ IDEA Open API and Plugin Development
Code Completion - get context in which is method called
1 票
创建于
2016年01月06日 10:16
Hello Hasintha,CompletionParameters.getOriginalPosition() returns the current element.you could look up parent elements withcurrentElement.getContext().getParent().getText();something like this.
社区
IntelliJ IDEA Open API and Plugin Development
Completion Contributor for Scala
1 票
已编辑于
2016年01月21日 03:50
Hello Jin,in what programming language?xml?
社区
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
1 票
创建于
2016年03月29日 11:01
> is that the reason it isn't showing in the first step? I am not sure. Just guessing: could try to implement moduleConfigurationEditorProvider extension point here is an example
社区
IntelliJ IDEA Open API and Plugin Development
Setting up an SDK and Language Version for new Project
1 票
下一页
›
最后
»