Sushmitaraj19365
- Total activity 33
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 11
-
Created Storing password in keepass in intellij gateway
AnsweredI 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... -
Edited NullPointerException: Cannot invoke "com.intellij.openapi.project.Project.getService(java.lang.Class)" because "project" is null
AnsweredI 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... -
Created Override deafult behaviour of jtext area on right click
AnsweredI 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.... -
Edited Detect theme change and load dark/light css for my plugin window without the need to restart
AnsweredCurrently , 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... -
Created adding icon in my plugins window which has two actions like the default settings gear icon
AnsweredI 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. ... -
Edited open my plugin settings through an action in menu bar
Answered@Override public void actionPerformed(@NotNull AnActionEvent e) { ShowSettingsUtil.getInstance().showSettingsDialog(e.getProject(), MyConfigurable.class);}i am using the above code to open the s... -
Created Get text from visible area in document of my editor intellij ide
AnsweredHow 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... -
Created intellij plugin in java and i am using JCEF error java.lang.IllegalArgumentException: invalid keyCode
AnsweredI 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... -
Created Sample code in editor for hints
AnsweredI 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...