Harshitgarg777
- 活动总数 110
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 3
- 订阅数 30
-
创建于 How to distinguish bw update and uninstalling a plugin
已回答Hello, I want to call a function if my plugin is being uninstalled by the user and not call if it's being updated. I used beforePluginUpload in DynamicPluginListener which has a Boolean variable is... -
创建于 How to modify undo behaviours?
已回答I am coding a plugin and want to modify if control + z is pressed by the user. How to implement this? -
创建于 How to know if user is typing in Console of PyCharm
已回答I 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? -
创建于 Show popup above inlay hints
已回答I 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... -
创建于 How to know if a particular virtual file is opened in the right split
已回答I 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... -
创建于 How to open a new file in a split editor through code?
已回答I 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... -
创建于 add a popup to inlay Hint
已回答i 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. -
创建于 how to know if user types backspace or tab and implement changes in the editor
已回答I 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 ... -
创建于 Remove a file whenever plugin is removed
已回答I have made a new file whenever user installs my plugin and want to remove it whenever user removes the plugin. How to implement it? -
创建于 Use InlayHints to show code suggestion
已回答I 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.