主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
KronicDeth
Creator of the IntelliJ Elixir plugin
活动总数
146
最后的活动
2022年10月13日 15:10
成员加入日期
2014年10月30日 01:35
关注
0 名用户
关注者数
1 名用户
投票数
11
订阅数
47
活动概览
帖子(32)
评论(56)
按最近的活动排序
最近的活动
投票数
创建于
2016年12月24日 05:26
You're welcome to look at my implementation or ask me questions for IntelliJ Elixir, https://github.com/KronicDeth/intellij-elixir. Just look for any time I mention Go To Declaration in the CHANGE...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: References Tutorial
2 票
已编辑于
2017年11月05日 14:11
You might want to try writing it as a `com.intellij.codeInsight.editorAction.TypeHandlerDelegate` subclass and registering it like <typedHandler implementation="org.elixir_lang.TypedHandler"/>I use...
社区
IntelliJ IDEA Open API and Plugin Development
Assign ENTER to plugin shortcut
1 票
创建于
2015年01月01日 20:30
This is the code I was able to figure out by following the available method list for each class along the way: PsiFile containingFile = element.getContainingFile();Project project = containingFile....
社区
IntelliJ IDEA Open API and Plugin Development
Line and column number of element within containing file
1 票
创建于
2015年01月02日 04:52
Thought I should add a note: IntelliJ displays line numbers as 1-indexed, but `Document.getLineNumber` will return a 0-indexed number, so you need to add `+ 1` to get the line number that the user ...
社区
IntelliJ IDEA Open API and Plugin Development
Line and column number of element within containing file
1 票
已编辑于
2016年02月24日 01:41
Thanks! That worked. Will JetBrains access just javadoc change PRs for intellij-community? The docs don't make it obvious that getSuitableClasses controls Scroll From Source.If anyone needs examp...
社区
IntelliJ IDEA Open API and Plugin Development
Scroll From Source not working when implementing StructureViewTreeElement
1 票
创建于
2021年11月29日 02:09
Jakub, I'm creator of the of Elixir plugin. I'd need more details of what you mean by "not working well/crashing". It's rare I get reports of full crashes from users where nothing works.If you me...
社区
IntelliJ IDEA Open API and Plugin Development
Elixir IDE
0 票
创建于
2018年03月22日 14:48
How do I detect that the user has switched to the tab and that it is safe to create the other components?
社区
IntelliJ IDEA Open API and Plugin Development
Access is allowed from event dispatch thread when calling EditorFactory.getInstance().createEditor(document, project, Type, true) from FileEditor#getComponent
0 票
创建于
2018年01月24日 16:16
Yes, I know it's a bad idea. I didn't mean to do it. It was left over as an optimization from a earlier version of the UI when I was adding a scrollpane on the outside of all tab components. It s...
社区
IntelliJ IDEA Open API and Plugin Development
Editor component added to OnePixelSplitter or JBTabbedPane are not scrollable
0 票
创建于
2018年01月24日 14:53
Ok, so I went through my code and it turned out that I had been wrapping the components in JBScrollPane before adding them to the outer most tabbed pane. I changed my code to only add JBScrollPane...
社区
IntelliJ IDEA Open API and Plugin Development
Editor component added to OnePixelSplitter or JBTabbedPane are not scrollable
0 票
创建于
2018年01月24日 12:53
It might have something to do with the nesting: for the Code edtitor, which shows bytecode, it it is added to a tab and that JBTabbedPane is returned from `FileEditor.getComponent`. If I move the ...
社区
IntelliJ IDEA Open API and Plugin Development
Editor component added to OnePixelSplitter or JBTabbedPane are not scrollable
0 票
下一页
›
最后
»