Keith Lazuka

Results 59 comments of Keith Lazuka

That's an interesting idea, and I think it would be easy to do.

IntelliJ has 2 syntax highlighting passes 1. simple, token-based highlighting (see `ElmSyntaxHighlighter`) 2. real syntax-based highlighting (see `ElmSyntaxHighlightAnnotator`) Right now parentheses are highlighted by (1). But in order to make...

The plugin marks `elm-stuff` as an "Excluded" source root. This means that IntelliJ will ignore the contents. Normally this is what you want because there are a lot of intermediate...

After thinking about this a little bit more, this is a bug. The plugin should honor the `source-directories` listed in your `elm.json`. I will figure out a way to register...

Is it possible to provide inspections (or notification bars) for file types (like `*.json`) which are "owned" by a different plugin?

@ishmum123 thanks! I will review this week (busy at work today).

I intend to review the PRs soon, but I'm busy with my new job, and it's difficult to find the time on the weekend to do open-source review.

I'll give it a try in the next few days. I can see how this would be useful, and I trust that your GraphQL examples are a good motivating factor....

One challenge in this is going to be the “stubs” system. For features like this that run automatically on multiple elements in the editor and which depend on analysis of...

> Adding type hints calls to ElmPsiElement.findTy(). Do you think that will use information that will be indexed already since it's just resolving types? Yes, the type inference system is...