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 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... -
Created indexStub not being called and index is empty
I've been following http://www.jetbrains.org/intellij/sdk/docs/basics/indexing_and_psi_stubs/stub_indexes.html while looking at https://github.com/ignatov/intellij-erlang/commit/87ad1f4d8ddeba7f7d5... -
Created Plugin Run Configuration doesn't work after moving to new computer with new username
I recently moved to a new computer and now the Plugin Run Configuration for my Elixir plugin no longer works inside the test/debug instance of IntelliJ IDEA. I don't get any messages in the log wh...