KronicDeth
Creator of the IntelliJ Elixir plugin
- 活动总数 146
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 11
- 订阅数 47
-
创建于 StubIndex persisting between test runs leading to incorrect completions
已回答I'm testing references and completion and the completion results are failing based on the order of the tests because the LightPlatformCodeInsightFixtureTestCase reuses the project (and I guess the ... -
创建于 Some users of my plugin get java.lang.NoSuchMethodError: com.intellij.lang.parser.GeneratedParserUtilBase.enter_section_
已回答I have a few bugs (https://github.com/KronicDeth/intellij-elixir/issues/402 and https://github.com/KronicDeth/intellij-elixir/issues/391) where users are getting `java.lang.NoSuchMethodError: com.i... -
创建于 Setting SDK for ParsingTestCase
已回答I need to set the SDK (and be able to retrieve it in my parser) during tests derived from com.intellij.testFramework.ParsingTestCase, so I can check the SDK version and emulate the Elixir version b... -
创建于 ERB like template language
已回答Like how Ruby has ERB (Embedded RuBy) files, Elixir has EEX (Embedded EliXir) files (http://elixir-lang.org/docs/stable/eex/EEx.html). They even use similar tags, <% %> and <%= %>, for embedding t... -
创建于 Hitting enter doesn't send text to LangeConsoleImpl
I'm implementing a Run Configuration for `iex`, the repl for Elixir, and I can get the process to launch, but I most be missing something in the other implementations: I can type at the prompt, but... -
创建于 Goto Symbol with custom ChooseByNameContributor shows no results for some name, but just spins without error in Console
I'm writing a ChooseByNameContributor to act as the GotoSymbolContributor for my Elixir plugin. It works well, but for some inputs that I know have matches, the spinner just keeps spinning without... -
创建于 Implementing Download Sources for a new Language
For my Elixir plugin, I want to automatically prompt to download the standard library sources tarball from Github, so Go To Definition can work on standard library Modules. I suppose I want it to ... -
创建于 Scroll From Source not working when implementing StructureViewTreeElement
I've been slowing building up the Structure view for my elixir plugin, https://github.com/KronicDeth/intellij-elixir, but I can' get Scroll From Source to work. I assume I'm missing some method I ... -
创建于 Is unresolved reference inspection automatic or custom for each language?
If I have a reference that is `PsiPolyVariantReferenceBase` subclass and its multiresolve returns an empty array, is the unresolved reference error inspection supposed to just work, or do I need to... -
创建于 Using extends to trigger Pratt Parser and extending NamedStubbedPsiElementBase<?> for resolving references
I currently have stub indexing working for aliases in intellij-elixir, but I can't figure out how to get MatchedQualifiedAliases to support stubs, because the tutorial on stub indexing had me creat...