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 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... -
Created Annotator for another plugin's language
Erlang support for IntelliJ is supplied by intellij-elixir, but I want my plugin for Elixir, intellij-elixir to be able to annotate Erlang references to Elixir modules as is done for properties in ... -
Created jsp modules not being packaged in zip
I had a contributor add compiler support to intellij-elixir based on the code intellij-erlang. The PR included a jps-builder and jps-shared module, which is shown in the Output Layout for the inte... -
Created Build against Rubymine SDK not working when using depends optional=true
Following the instructions on https://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products, I moved my projectStructureDetector extension to rich-platform-p... -
Created Action and Inspection (LightCodeInsightFixtureTestCase) tests work in IntelliJ, but not in ant
I have tests for Inspections that mark errors (like ambiguous commas, parentheses or missing end of expression) and testing the New File action. Both test classes extend LightCodeInsightFixtureTes... -
Created Tests for New File Action
How do I test a New File action in the NewGroup, including bringing up the Dialog, selecting the the language, checking the validation and then checking that the file is created in the correct dire... -
Created Recovery when end of expression (EOL or `;`) is missing
The top of my grammar is defined as follows:// expressionList is optional to handle code-less file that contains only EOL between blank lines and order comment // lines elixirFile ::= endOfExpressi... -
Created Translate left recursion in yecc (yacc) to left-recursion for Grammar Kit
Elixir's grammar (https://github.com/elixir-lang/elixir/blob/de39bbaca277002797e52ffbde617ace06233a2b/lib/elixir/src/elixir_parser.yrl#L387-L388) is written in yecc, which is an Erlang port of YACC... -
Created Overriding token name in PsiErrorElement
Is there a way to override the name displayed in PsiErrorElements so they are more human readable? For example I havePsiErrorElement:ElixirTokenType.AND_OPERATOR, ElixirTokenType.ARROW_OPERATOR, E...