AskMeAgain
- Total activity 57
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 19
-
Created Open a small editable window with full code completion
AnsweredHi, i want to create an action, which opens a specific location of a file (think of it like the first 10 lines of a selected file) and the user can code in such a pop up window, with full intellise... -
Edited Change font weight of the first specific letters?
AnsweredHi, is it possible to change the font weight of specific parts of my document? I think of something like this: ChangeFontWeight.apply(document, TextRange.of(100,110), Weight.Bold); Also impor... -
Created How to insert new YAML key/blocks?
AnsweredHi, i have a YAML file, which i want to change in 2 ways: 1. I want to change the value of the node, but i honestly have no idea how. I tried to instantatiate the YAMLValue, but i just dont get i... -
Created Changing AnActionEvent origin?
AnsweredHi, i have created a tool window with a button. When this button is pressed, then another action is executed (dynamically chosen). This action is in 99% of the time a refactoring action. The proble... -
Created How to register a typedHandler dynamically?
AnsweredHi, i want to record inputs of the user, I can currently record actions, but i want to record keypresses too. The keypresses itself should still react normally. i want basically to do this: https:/... -
Created PropertiesComponent not persisting?
AnsweredHi, i just want to store some small data in my plugin. I expected that when i run 1 action which saves data like this: PropertiesComponent.getInstance().setValue("a", "testvalue"); and i run anothe... -
Created How to test popup functionality?
AnsweredHi, My Plugin opens up an actionGroupPopup. Now iam trying to run a test on this. Here is how i open the popup: var editor = actionEvent.getRequiredData(CommonDataKeys.EDITOR);var popup = JBPopupFa...