Bear
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 4
-
-
Bear created a post, AnsweredAccess is allowed from event dispatch thread only
I am currently facing this exception on CLion when I run my plugin with a sample rust project, however, this exception does not come through when the project size is small. I have tested my extensi... -
Bear created a post, AnsweredExtending the existing run configuration UI
I want to extend the existing run configuration UI, i.e. when the user edits the run configuration settings, I want them to also see a menu of my plugin where they can choose the settings they want... -
Bear created a post, AnsweredWait for the user to select an item from a popup
hi, I created a popup like so: JBPopupFactory .getInstance() .createListPopup(PopUpMenu("Select a pod to impersonate", pods)) .show(RelativePoint.fromScreen(Point(600, 200))); ... -
Bear created a post, AnsweredModifying the run configuration before execution
Basically, I want to modify the environment variables of the run configuration when a user clicks on the debug button, but I can't seem to find an interface/class that I could implement through an ...