Jon Akhtar
- Total activity 383
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 142
-
-
Created Find Usages / Scope Not Including Libraries For Custom Language
For my custom language I want to be able to add libraries to the scope. Even though I can add a library, and it will index all the files, and references/go to declaration all work. Find usages does... -
Created Adding Extra Information During A Parse
When I am parsing my custom language, I have more information I would like to include about some of the nodes, but the builder interface only lets you specify the tree elements. Is there any way to... -
Created How do I get this formatting to work properly
Beginning withMy rules say that anything that goes past the right margin must wrap.This leads to:If I add my own linefeed (manually) before "createExpression...." then formatting the text does not ... -
Created Lua Plugin for appCode
I have made a special build of my Lua plugin for appCode users. It is available here: https://bitbucket.org/sylvanaar2/lua-for-idea/downloads/IDLua.zipUnzip it, and place the resulting folder inUse... -
Created Why doesn't my plugin show up in the updated list for all products?
My Lua plugin (http://plugins.intellij.net/plugin/?idea&id=5055) used to show up in the updated list for all Jetbrains products. Now it only shows up for IntelliJ. I was wondering why.Specifically,... -
Created Intention Example Files
I was wondering how to supply intention example files for use in my custom languages intention descriptions - I am refering to the before and after files. If I go to the intention options for my cu... -
Created Extending Structural Search and Replace
I just watchted Hamlet's presentation on SSR, and was wondering if it was possible to extend SSR for a custom language. My first guess would be no, because it doesnt appear to be available for Ruby... -
Created Copyright Support In a Custom Language
I have on 2 occasions tried to implement copyright support (via the copyright plugin) in my custom language. I keep finding that it is not possible due to the comment structure in my custom languag... -
Created Using the new Language Console API
This should be dead easy from what I have seen in the code most of the work in creating a custom language console is done by the base class implemenations, and the console does appear to work, but ...