Henry Peterson
I am a passionate programmer and a clean code evangelist who mainly likes to create Android apps and contribute to open source libraries. https://thsaravana.github.io/
- 活动总数 174
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 53
- 订阅数 45
-
创建于 Kotlin FindUsages not working for Primary constructor for custom reference
I am writing a plugin for Handlebars support, where I am trying to connect a Handlebars file (.hbs) with a corresponding Kotlin class. The below is: My Handlebars file: {{#each animals}} Working =... -
创建于 resolve() invoked multiple times
In my plugin I have created a reference using PsiReferenceContributor, PsiReferenceProvider and PsiReferenceBase. When I put my mouse over the element, the resolve() method is invoked multiple time... -
创建于 How to listen to file open event?
I am trying to listen to file open event, i.e, a callback when a file is opened in the editor. I am using this now: project.messageBus.connect(project).subscribe(FileEditorManagerListener.FILE_EDI... -
已编辑于 How to handle custom references when renaming the folder name?
I used `PsiReferenceContributor` and `PsiReferenceBase` to create a reference between the text (KtStringTemplateExpression) "folder/samplefile.txt" and the file "samplefile.txt" under the directory... -
创建于 Hook into VcsHistoryProvider of existing VCS plugins
So I use GitHub VCS plugin. When I right click on any file and click 'show history', it opens up the 'History' panel in the 'Version Control' toolwindow. Here there are multiple rows, each of which... -
创建于 Manipulating Background task queue
I have a JList in my toolwindow and when I click on each row, a background process is run and on completion another part of my toolwindow is populated with the content. I am using ProgressManager.g... -
创建于 Icon not shown for Action in ActionToolbar of ToolWindow
I created a DefaultActionGroup and added an Action to it. Using that I created the ActionToolbar for my ToolWindow. Now the thing is, for my Action, I have declared the icon in the <action /> tag i... -
创建于 Showing custom usage results (ReferenceSearch) in Find toolwindow
I was trying to customize Find Usages to suit my needs. I used ReferenceSearch to find all the usages. But then I wanted to show these usages in the Find toolwindow. I searched a bit and couldn't f... -
创建于 Graphing for CE - Eclipse GEF / JavaFX
I am kind of giving up on mxGraph. It need lots of work done. Thought of using Eclipse GEF. It says I can create standalone applications using that. Then I should definitly be able to wrap it up in... -
创建于 Dialog to show logs from console
Hi, I am looking for how to show logs from console into a dialog.My Objective: I have a backgroud task running (Its Runtime.getRuntime().exec() ,i.e, invoking terminal command), and I get the outpu...