Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Jon Akhtar
Total activity
383
Last activity
July 30, 2019 07:31
Member since
September 27, 2010 19:42
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
142
Activity overview
Posts (42)
Comments (199)
Sort by recent activity
Recent activity
Votes
Created
May 26, 2013 19:32
The platform is capable of making custom IDE''s,and you basically have to provide a "main plugin" - like Ruby for RubyMine.Read this thread: http://devnet.jetbrains.com/thread/291031?tstart=30
Community
IntelliJ IDEA Open API and Plugin Development
Building new IDE on top of intellij open platform
0 votes
Created
May 26, 2013 19:23
Perhaps this will help?You implement an exetnsion point so that the platform knows about you.Here are 3 you should look at: <configurationType id="Lua" implementation="com.sylvanaar.idea.Lua...
Community
IntelliJ IDEA Open API and Plugin Development
persisting a run/debug configuration
0 votes
Created
September 25, 2013 02:31
I'll be very interested in seeing it. I know when I first started - they specifically mentioned that doing a plugin using a parser generator would be a real challenge.
Community
IntelliJ IDEA Open API and Plugin Development
Clearing plugins-sandbox automatically
0 votes
Created
September 16, 2013 18:14
Thansk Dmitry - I should have known to look there.
Community
IntelliJ IDEA Open API and Plugin Development
Build Number -> Platform Version
0 votes
Created
September 15, 2013 05:51
You can store unique values as UserData (putUserData) on any psi element, That data will survive a PSI tree merge assuming rhe PsiElement does. That might help with your disappearing nodes problem....
Community
IntelliJ IDEA Open API and Plugin Development
tracking gutter icon locations reliably
0 votes
Created
October 10, 2013 00:19
In order for the binding library I am using to work it woiud require an interface, and in the API currently everything is an abstract class. I will have to make an adapter class that I can instanti...
Community
IntelliJ IDEA Open API and Plugin Development
Loading Inspections - Getting the Classloader Right
0 votes
Created
September 25, 2013 06:26
So dump out your tokens in both cases, along with their char ranges. Perhaps you can use the PsiViewer.When the document changes there is a time where the text does not match the PSI tree until the...
Community
IntelliJ IDEA Open API and Plugin Development
Editing document yields exception; wrong index into buffer
0 votes
Created
September 26, 2013 02:17
Basically the job of the lexer is to turn the entire contents of the file into a token stream that is used as the representation of the document from then on you have to emit a stream that covers t...
Community
IntelliJ IDEA Open API and Plugin Development
Editing document yields exception; wrong index into buffer
0 votes
Created
September 30, 2013 01:16
By the way, If there is any way that PsiViewer could make this any easier - let Colin and I know. There are already some features to help you write unit tests using IDEA's unit testing framework.I ...
Community
IntelliJ IDEA Open API and Plugin Development
Editing document yields exception; wrong index into buffer
0 votes
Created
September 27, 2013 17:54
Are you modifying the PsiTree without having a write lock on it?http://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Architectural+Overview?focusedCommentId=20816#IntelliJIDEAArchitectural...
Community
IntelliJ IDEA Open API and Plugin Development
threading issues still
0 votes
«
First
‹
Previous
Next
›
Last
»