KronicDeth
Creator of the IntelliJ Elixir plugin
- Total activity 146
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 11
- Subscriptions 47
-
Created StubIndex persisting between test runs leading to incorrect completions
AnsweredI'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 ... -
Created Some users of my plugin get java.lang.NoSuchMethodError: com.intellij.lang.parser.GeneratedParserUtilBase.enter_section_
AnsweredI 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... -
Created Setting SDK for ParsingTestCase
AnsweredI 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... -
Created ERB like template language
AnsweredLike 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... -
Created 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... -
Created 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... -
Created 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 ... -
Created 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 ... -
Created 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... -
Created 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...