KronicDeth
Creator of the IntelliJ Elixir plugin
- 活动总数 146
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 11
- 订阅数 47
-
创建于 Access is allowed from event dispatch thread when calling EditorFactory.getInstance().createEditor(document, project, Type, true) from FileEditor#getComponent
On the .beam files (so the equivalent of .class files for Erlang/Elixir), I have <fileEditorProvider implementation="org.elixir_lang.beam.file_editor.Provider"/>. It supplies a second editor tab ne... -
创建于 Editor component added to OnePixelSplitter or JBTabbedPane are not scrollable
I'm creating custom editors to show decompiled/dissassembled code. I got highlighting and annotations working using class Panel(private val definitionsTree: Tree, project: Project): JPanel(GridLa... -
已编辑于 Facet for Custom Language SDK in Rubymine
Looking at the code for intellij-community, it appears that there is a form of the Python plugin for "minor" IDEs. Is this the same as "small" IDEs, and so includes Rubymine? Here's the lines whe... -
已编辑于 Extra blankline for custom formatter when different value used for indent / align do end blocks to call
I'm trying to write formatter for my Elixir plugin. My demo code is```defmodule Foo do def foo do endend```I had the formatter not generating blocks for any TokenType.WHITE_SPACE, but changing t... -
已编辑于 unable to get stub builder for org.intellij.plugins.markdown.lang.MarkdownFileType
A user (https://github.com/Potrimpo) of my plugin, IntelliJ Elixir (https://github.com/KronicDeth/intellij-elixir), reported (https://github.com/KronicDeth/intellij-elixir/issues/613) the error `... -
创建于 Speeding up negative look-ahead with GrammarKit-based parsers
已回答For IntellIJ Elixir, I have a GrammarKIt based grammar, https://github.com/KronicDeth/intellij-elixir/blob/825344da93f6c446b3fcdf18295a7dca7337a91d/src/org/elixir_lang/Elixir.bnf. It works well an... -
创建于 Parsing decompiled source using target language's extensions
已回答I'm able to decompile the .beam files used on the Erlang BEAM VM to faked Elixir code, using <filetype.decompiler filetype="BEAM" implementationClass="org.elixir_lang.beam.Decompiler"/> but, th... -
创建于 Unable to get stub builder for com.jetbrains.jsonSchema.JsonSchemaFileType
已回答When trying to access the index for my plugin for Elixir, a user is getting the following exception: unable to get stub builder for com.jetbrains.jsonSchema.JsonSchemaFileType@64d1b74, path = /Vo... -
创建于 Testing RunConfigurationProvider and ModuleBasedConfiguration subclass
已回答I want to write tests for https://github.com/KronicDeth/intellij-elixir/pull/482, which introduces a new Run Configuration format to run tests using the `mix test` command line tool. I found `Exec... -
创建于 LightPlatformCodeInsightFixtureTestCase myFixture.getLookup returns null, but lookup appears in editor itself
I'm using LightPlatformCodeInsightFixtureTestCase to test the completion for my plugin. I have all the tests passing except for those that test completion of `alias as:`. For some reason, in thes...