Konstantinos Kougios

- Total activity 98
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 30
-
Created code formatting issue
It has been a few months now that I have this problemclass MembersRegistryServiceImpl( name: String, cluster: Cluster, members: RoundRobin[Member], registerOnlyRoles: Set[String], l... -
Created Scala Macro that re-writes class confuses the IDE
Hi, I saw a thread about a monocle macro, I am not sure if my problem is similar.So I got an annotation macro that rewrites a class and is used like@remoteServiceclass MyServiceRemote extends MySer... -
Created code error tooltips dissapear due to normal tooltips
Hi,Whenever there is an error in my code, in the editor if I hover the mouse over the error, I get the err msg briefly before it dissapears due to an other tooltip which i.e. explains the type of t... -
Created intellij getting stuck when optimizing imports
I work on a scala project. Some devs of the projects seem to like a lot implicits and mixin traits (the project is a feast of those !). I think this makes the optimizer run forever. I was trying to... -
Created sbt issue when changing scalacOptions in ThisBuild ++= Seq("-target:jvm-1.6")
I think this is a bug.I changed the target jvm to jvm-1.6 and then jvm-1.8 and then jvm-1.7 and back to 1.6 but the ide gives me an error:Error:scalac: bad option: '-target:jvm-1.8'This is jvm-1.6 ... -
Created How to create a component for testing purposes only
I inject an array of interface MyComponent to ComponentA. And I am trying to test if ComponentA is correctly invoking MyComponent's methods. So for testing purposes, I would like to register a test... -
Created null ptr during unit testing
I'm running into this problem when running my unit test. The code causing this is just creating a notification:java.lang.NullPointerException was thrown.java.lang.NullPointerException at com.int... -
Created F class and F.form, F class fields are not bound
Hi,I've copied MyUIForm.form from the applicationConfigurable example and I've created a class. I've wired the class in my plugin.xml: <extensions defaultExtensionNs="com.intellij"> <appl... -
Created how to find the Module of a VirtualFile?
I've a VirtualFileEvent from VirtualFileManager.getInstance.addVirtualFileListener() but I can't trace the Module for the VirtualFile, searching on these forums revealed nogood way, so what's the b... -
Created dependency injection for menu / AnAction
How can I inject a component into an AnAction instance and how does DI work for plugin development?