Hani Suleiman
- Total activity 1008
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 380
-
Created OSX fslogger
Do we still need to run this manually on new versions?Also, any chance you guys could provide a universal binary of it, so us poor macbook pro owners can have even more fun? -
Created Subversion sllooooowww
Just when I thought subversion from IDEA couldn't get any slower, it went and did it!Up to 4121, it was just normal slow. As in, if you try commit project in a project with 12 modules and a couple ... -
Created sneaky intentions bug...
Here's a fun one:Integer.intValue() + "-" + 12The single char string to char intention will helpfully suggest you replace the "-" with '-', which would, potentially, cause a showstopper bug, a high... -
Created annotation completion
I've noticed that enums inside of annotations don't show available values, is this deliberate, a bug, or just a freak consistent accident that only affects me?An example is the ejb3 annotations, if... -
Created Custom icons
How can I specify the file editor icon for a particular type of file? Ideally I'd like to be able to plug in something that gets a PsiFile/PsiClass, and return an Icon for that. -
Created Late night PSI fun
Some PSI question, apologies if these are basic questions that are blindingly obvious. I couldn't find any docs after a cursory search:1) Given a PsiClass that extends Class X, how do I make it not... -
Created String concat in a loop annoyance
Does anyone find this inspection to be a bit..dumb?I have code like this in a number of places:for(item : items) collection.add(prefix + item);This looks like a perfectly legitimate practice to me,... -
Created PluginManager calls
When I try to call PluginManager (to get at the classpath for my plugin), I always get the exception below. Nowhere in my project so I have 'com.intellij.component' so I'm rather baffled as to how ... -
Created Default JDK on OSX
...is 1.4. Is there any reason why the Info.plist file isn't changed to 1.5+?In theory, it shouldn't matter, but in practice it does. For example, it becomes impossible to create a 1.5 plugin JVM. -
Created Looking up annotations
How do I look up annotations on a class or method? I can figure out if a given PsiClass is an annotation, but I also need to be able to look up the annotations specified on a given field/method/class.