Harshitgarg777
- Total activity 110
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 30
-
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... -
Created Multiple Build configurations
AnsweredI use ./gradlew clean build to build the binary of my intellij plugin. I want to pass some arguments in this command like ./gradlew clean build --prod or ./gradlew clean build --dev. Now, I want to... -
Created How to use original implementation of an action
AnsweredHello, I am creating an action and mentioning it in plugin.xml file. There I mention that the keyboard shortcut is Tab (or any other shortcut). Suppose I only want to implement this action under ce... -
Created How to write unit test cases for a function that takes document or editor as argument?
AnsweredI coded a plugin for intellij. I had a function that takes an editor as input and finds the current cursor and returns the text from that line to previous 5 lines. How to write unit test cases for ... -
Created how to add multiple build configurations for my plugin?
AnsweredHello, I use ./gradlew clean build to build my plugin. I want there to be 2 diff configurations for build, i.e - prod(production) and dev(development) and I would want to execute some command like ... -
Created How to store passwords in keepass instead of native keychain
AnsweredHello, I want to store the password in keepass even if the user has selected In native keychain in Appearance & Behaviour> System Settings> Passwords. I am using passwordSafe.getInstance().set to s... -
Created Showing password is stored when defaultKeyring is locked
AnsweredHello, I am storing password using PasswordSafe and retrieving it from there. My code has a functionality where when token is set by the user it shows the notification “token validated”. Suppose, t... -
Created Issue in Korean when EditorTab and CaretListener is used
PlannedHello, I have a custom caret listener and a custom editorTabAction. When I press tab and the language is English, editorTabAction is called first and then the caretListener. When I am typing in Kor... -
Created Get multiline comments format based on lang of document.
AnsweredI am writing code that will insert multiline comments in a document as a disclaimer on top. Since, different languages can have diff types of multiline comments, is there any way to achieve this us... -
Created TypedHandlerDelegate is not being called
AnsweredHello, TypedHandlerDelegate is not being called if the user types at a normal speed. I tested it by typing “public” and it was only called for p and u