Jon Akhtar
- 活动总数 383
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 142
-
创建于 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... -
创建于 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 ... -
创建于 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... -
创建于 [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... -
创建于 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... -
创建于 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? -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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...