AskMeAgain
- 活动总数 57
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 19
-
已编辑于 Best way to analyze part of code, with working references?
已回答Hi, i am writing a plugin, where the user is selecting some code (within a method for example) and i run some analyzer on top of the selected code. What iam currently doing is creating a codeblock ... -
已编辑于 Is it possible to extend/change current gui windows?
已回答Hi, sometimes i would like to add a button/checkbox to existing GUI and enhance the current functionality. Is something like this possible? For example: add a new checkbox to the commit dialog o... -
创建于 How to get type of any psiElement?
已回答Hi, i have problems getting any PsiType or PsiClass info from some psi elements: PsiLocalVariable: how do i get the resulting type? PsiDeclarationStatement: how do i get the type of the declaratio... -
创建于 Open a small editable window with full code completion
已回答Hi, 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... -
已编辑于 Change font weight of the first specific letters?
已回答Hi, 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... -
创建于 How to insert new YAML key/blocks?
已回答Hi, 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... -
创建于 Changing AnActionEvent origin?
已回答Hi, 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... -
创建于 How to register a typedHandler dynamically?
已回答Hi, 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:/... -
创建于 PropertiesComponent not persisting?
已回答Hi, 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... -
创建于 How to test popup functionality?
已回答Hi, 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...