Sushmitaraj19365
- 活动总数 33
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 11
-
创建于 Storing password in keepass in intellij gateway
已回答I am storing the password of my plugin in KeePass. But when I restart the project in IntelliJ gateway ( I am using ssah to access the project on my VDI), the password in keypass gets deleted. Plea... -
已编辑于 NullPointerException: Cannot invoke "com.intellij.openapi.project.Project.getService(java.lang.Class)" because "project" is null
已回答I have a plugin which uses jcef browser to display results in which I have a service level class defines as @Service(Service.Level.PROJECT) and there i have a field as private final Project proje... -
创建于 Override deafult behaviour of jtext area on right click
已回答I have binded the Jtext area with PopUpmenus in in my Jpanel. I want that popup menus should only be seen when I click on" /" key but the popup menus are also shown if i right click in jtext area.... -
已编辑于 Detect theme change and load dark/light css for my plugin window without the need to restart
已回答Currently , i have written methods to load the light and dark theme but it happens only when i restart my plugin , i want to Detect theme change and load dark/light css for my plugin window immed... -
创建于 adding icon in my plugins window which has two actions like the default settings gear icon
已回答I want add the settings option the ui of my plugin. I have used ToolWindowFactory this for the showing the UI. Please tell how to add menu like the default settings menu of my Window factory has. ... -
已编辑于 open my plugin settings through an action in menu bar
已回答@Override public void actionPerformed(@NotNull AnActionEvent e) { ShowSettingsUtil.getInstance().showSettingsDialog(e.getProject(), MyConfigurable.class);}i am using the above code to open the s... -
创建于 Get text from visible area in document of my editor intellij ide
已回答How to get text from the from the visible area in the current open document in intellij. Suppose current caret is at 18th line and last line that is visible is 56th line in the doc(though the doc... -
创建于 intellij plugin in java and i am using JCEF error java.lang.IllegalArgumentException: invalid keyCode
已回答I am developing a intellij plugin in java and i am using JCEF to diaplay some ui (using index.js). But, while typing any keystroke i get the below error in console. Exception in thread "Thread-6... -
创建于 Sample code in editor for hints
已回答I want to add a feature where grey code text is inserted in the caret position whenever user types something. Then if the user presses tab then the grey code becomes white and part of editor code a...