Harshitgarg777

- 活动总数 110
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 3
- 订阅数 30
-
创建于 Notify the user if passwords are not stored in keepass?
已回答I 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... -
创建于 I have created a read only editor. I want to disable inspection and syntax highlighting.
已回答PsiFile psiFile = PsiDocumentManager.getInstance(project).getPsiFile(doc); HighlightLevelUtil.forceRootHighlighting(psiFile, FileHighlightingSetting.SKIP_HIGHLIGHTING); HighlightLevelUtil.forceRoot... -
创建于 How to create a JSON editor in settings for my plugin?
已回答I 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 -
创建于 Password not being stored
已回答I 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... -
创建于 How to set a value of Registry... false programitically
已回答There 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... -
创建于 How to know if plugin is opened in a host via gateway?
已回答If 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? -
创建于 I have PyFunction, Caret position, PsiFile. How to get other things from here?
已回答I 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... -
创建于 How to use Python language PSI model for plugin development in intellij idea
已回答I added <depends>com.intellij.modules.python</depends> in plugin.xml and intellij {plugins.set(properties("com.intellij.modules.python")) }in build.gradle.kts -
创建于 Get the method text where cursor is present?
已回答Hello, 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. -
创建于 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...