Geoffrey Challen
- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 4
-
Created Project Dependency on org.jetbrains.kotlin.com.intellij.openapi.vfs.VirtualFile
AnsweredI maintain a project that interfaces with the Kotlin embedded compiler. As part of this we import org.jetbrains.kotlin.com.intellij.openapi.vfs.VirtualFile. Note that this project is not a plugin. ... -
Created Running Backgroundable Task at Project Close
AnsweredI have a Task.Backgroundable that I run periodically in my plugin to upload log data. I'm also running this at project close, but when this happens the background notification leaps into the foregr... -
Edited Plugin State Not Persisted on IDE Close
I maintain a plugin that tracks IntelliJ activity and periodically uploads data to a server. (Source code here: https://github.com/cs125-illinois/intellijlogger.) We upload logs periodically and al... -
Created Listen to Gradle Tasks and TestNG Tests
I'm building an IDE activity tracking plugin for my introductory CS course. At this point I'm successfully logging a bunch of UI-related events. However, I'd like to log when students run tests and...