Harshitgarg777
- Total activity 110
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 30
-
Created Notify the user if passwords are not stored in keepass?
AnsweredI want to check programatically if the user hasn't selected “keepass” in settings→password and notify the user accordingly. If I can change that setting programatically with the consent of the user... -
Created I have created a read only editor. I want to disable inspection and syntax highlighting.
AnsweredPsiFile psiFile = PsiDocumentManager.getInstance(project).getPsiFile(doc); HighlightLevelUtil.forceRootHighlighting(psiFile, FileHighlightingSetting.SKIP_HIGHLIGHTING); HighlightLevelUtil.forceRoot... -
Created How to create a JSON editor in settings for my plugin?
AnsweredI want a JSON editor in settings for IntelliJ plugin. I have a page in settings regarding my plugin. I want to make a JSon editor there like it's shown in Settings→editor→code style→json -
Created Password not being stored
AnsweredI am using passwordSafe and credential store to store a Key. It is not being stored, in logs i saw “WARN - #c.i.c.CredentialStore - Cancelled storage unlock: Cannot create an item in a locked colle... -
Created How to set a value of Registry... false programitically
AnsweredThere is an option “ide.browser.jcef.sandbox.enable” in Actions→Registry…If the user is using Iguana, I want to set the value as false. Registry.get("ide.browser.jcef.sandbox.enable").setValue("fal... -
Created How to know if plugin is opened in a host via gateway?
AnsweredIf the user hosts intellij on gateway and installs plugin there, I want to display a notification. I won't display it if it's not opened via gateway. How to check this? -
Created I have PyFunction, Caret position, PsiFile. How to get other things from here?
AnsweredI have a PyFunction object. I want to get the datatype of every parameter and if the datatype is defined in the project scope, I want to get the text of it. For example, if Class A datatype is used... -
Created How to use Python language PSI model for plugin development in intellij idea
AnsweredI added <depends>com.intellij.modules.python</depends> in plugin.xml and intellij {plugins.set(properties("com.intellij.modules.python")) }in build.gradle.kts -
Created Get the method text where cursor is present?
AnsweredHello, I want the text of the method where cursor is. I can get the offset by editor.getCaretModel().getOffset(). I want to use this offset to get the text of enclosing method. -
Created Force update plugin to a required version that is above the current version
Hello all, I have implemented force update using stand alone plugin update checker class but this uses the url that I put in the managed plugin repositories. We have a updatePlugin.xml file. Our ma...