Jon Akhtar
- Total activity 383
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 142
-
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 ... -
Created Question About TargetElementEvaluator
I have been working on implmenting a TargetElementEvaluator in my custom language plugin, the problem I am using it to solve is one of aliasing. In lua you can have the followingfunction foo() endl... -
Created [ANN] Lua 0.9.51
As I am approaching the 1.0 release after almost 1 year of working on this plugin, I have hit an important milestone. All planned features have been implemented to one degree or another. Some still... -
Created De-Indenting a Line After You Have Typed It
In my custom language, I want to de-indent a line as followsif a == 1 then b = 2 end <hit enter here>it should beif a == 1 then b = 2endOne idea I had was to invoke the formatter for the curr... -
Created Resolving Reference Outside of the Current File
I am trying to implement reference resolution for identifiers that are defined in other files either in the project or in libraries.Does anyone have a good example of how to implement this? -
Created Fixing The PsiViewer Plugin
The PsiViewer plugin is amazingly helpful when developing custom language plugins. It has a number of errors.You can fix the icon error by editing the jar and copying /PsiViewer/images to /imagesIf... -
Created Transient Lexer Errors In My Custom Language Plugin When Starting The IDE
This seems to happen only on startup of the IDE. I will occasionally get errors from the lexer of my custom language plugin. The errors don't seem consistant, and if I open the file my plugin has n... -
Created Where Should I Host Error Reporting for Plugins
Right now I have error report submission enabled in my language plugin. Currently theerror reports go to a free bugscout account.I have a YouTrack version of the error submitter, but there is no fr... -
Created Custom Language Plugin Optimization
I have been working very hard on my Lua plugin, and as I approach my 1.0 release its getting closer to optimization time.I have a general question. What are some of the common techniques for optimi...