Jon Akhtar

- Total activity 383
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 142
-
-
Jon Akhtar created a post, Plugin to Enhance Swift Support
I have begun writing a plugin to add to the Swift support in appCode. I picked a few features just for the sake of proving out that the plugin was possible, and I will show them. But I would like t... -
Jon Akhtar created a post, Integrate XML File As Part of A Custom Language
I have a custom language plugin that needs to recognize some xml files as being part of the language. The XML can both define symbols in the language and include code from the custom language where... -
Jon Akhtar created a post, Has anyone used the new Language Console API
I noticed that on a recent upgrade that the custom language console API has changed. I must admit that I haven't had any free time to look into what code changes are involved in migrating the old l... -
Jon Akhtar created a post, Loading Inspections - Getting the Classloader Right
I l;oad my inspections using through my inspectionToolProvider extension.I want to be able to supply inspections dynamically using Lua.My first couple trys at this were moderately successful - but ... -
Jon Akhtar created a post, Build Number -> Platform Version
I have broken up all my builds into builds per-platform. I still call them idea, so I have idea10, idea11, idea12, idea12.1, idea13Is there any way to map the build number (via an API) to the platf... -
Jon Akhtar created a post, Great Job On The Test Framework
I am loving the test framework you guys have developed. The recent suite of tutorials have been helpful, but mostly just knowing the functionality was there was enough. I didn't realize how much wo... -
Jon Akhtar created a post, Properly Embracing Darcula In Custom Languages
So. I love Darcula. For my own custom language plugin now that it works for IDEA 12, what is the best way to support the Darcula theme out of the box?I admit I haven't looked into this too much on ... -
Jon Akhtar created a post, Ongoing issues with accessing the StubIndex
I have been figting an issue where when I modify a document (type some text), This can cause an error in the StubIndex.I have never been able to pinpoint the cause of the error. I must be breaking... -
Jon Akhtar created a post, Formatting If Statements
Has anyone found a combination of formatting options that will turn: if (2 < 3) { return; } else if (2 > 3) { return; } else { return; ...