Harshitgarg777
- Total activity 110
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 30
-
Created How to modify undo behaviours?
AnsweredI am coding a plugin and want to modify if control + z is pressed by the user. How to implement this? -
Created How to know if user is typing in Console of PyCharm
AnsweredI have a function that's called in typedHandler but I don't want to call it if the user is typing in console. How to achieve this? -
Created Show popup above inlay hints
AnsweredI am showing inline inlay hint at caret position and block inlay hints below it. I have a popup and I am using showinbestpositionfor(editor) to show the popup. The popup is covering the inlay hints... -
Created How to know if a particular virtual file is opened in the right split
AnsweredI opened a file in right split using OpenInRightSplitAction.openInRightSplit(). Now, I want to know if it's already opened in it so that I can avoid calling it. When I don't do this, it opens a thi... -
Created How to open a new file in a split editor through code?
AnsweredI have a file open in an editor and if the user clicks on a button I made, it should open a file in split view. I have tried using FileEditorManager to open virtual file but it opens that file in n... -
Created add a popup to inlay Hint
Answeredi have inlay Hints of renderer class A and want to add a pop up to it that's displayed whenever a mouse is hovered over that renderer A inlay Hint. -
Created how to know if user types backspace or tab and implement changes in the editor
AnsweredI have used TypedHandlerDelegate to implement changes in the editor. I want to delete those changes if backspace is typed and modify those changes in the editor if tab is typed. I used keyListener ... -
Created Remove a file whenever plugin is removed
AnsweredI have made a new file whenever user installs my plugin and want to remove it whenever user removes the plugin. How to implement it? -
Created Use InlayHints to show code suggestion
AnsweredI wanna use InlayHints to suggest code whenever a key is typed and use a key (eg Tab) to implement it into the editor. Please suggest how to do it.