Sergey Svitkov
Java software engineer
- Total activity 77
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 11
- Subscriptions 17
-
Created Find GitCommit by it's Hash
AnsweredHi. I am working on a plugin related to VCS (currently only git) and I need to read commits one by one (to avoid OutOfMemory) from the beginning of project's history. While searching solution for ... -
Created Create VirtualFile or PsiFile from content
AnsweredHi. How can I create PsiFile or VirtualFile from it's content, without having actual file on disk? In case when file is actually deleted, but it's content in stored in commit data. I found very old... -
Created Handle editor newline creation/deletion
AnsweredHello! I wondering is it possible to handle line adding/deletion in editor. I found TypedActionHandler, but still have several questions: 1) How to handle newline adding to document? Can I just ch... -
Edited Add inlay hint above method
Hello! I am developing plugin for Intellij and want to display some information above the method like it displayed near Stream operations (see attached picture for example). How can I do this? I ha... -
Created Serialize PsiElements with possibility to restore their positions in PsiTree
Hello!I am developing a plugin for Intellij and looking for a way to serialize SmartPsiElementPointer instances. I know that Intellij API offers a way to save plugin state in xml file with the help... -
Created Get a list of commits in project
AnsweredHello!I am developing a plugin for Intellij and therefore wondering is there a functionality in intellij-openapi allowing to get a list of commits in current branch?It would be perfect if it is pos... -
Created Handle file opening
Hi! I am creating plugin for Intellij. Looking for help with handling File and Project opening events. To clarify my question: Case for file opening handle in editor: I want to add my custom InlayP... -
Created Diff between two commits in lines
AnsweredHello!I am trying to get diff between two files in order to use it in my plugin. I saw this thread: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206756695-Get-diff-between-two-fi... -
Created Handle an event from VCS (Git)
AnsweredHello.I am currently developing IntelliJ plugin. Want to know, is it possible to handle changes in VCS? I want to be notified with some kind of event, when commit or push happens and handle it.If t... -
Created How to get method boundaries with Intellij openapi?
Hello. I am working on Intellij plugin development. Wondering is there an opportunity to get method boundaries in file? I mean, number of method starting line and number of it's last line. Thanks! ...