Daniel Alexander Haak

- Total activity 71
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 16
-
Created Saving changes to document
AnsweredHello, I am currently writing a plugin. In this plugin i analyse files in Intellij and additionally with external code. Every time i change a file within intellij the changes get cached and the fi... -
Created Publishing intellij plugin
AnsweredSo i wrote my plugin and now want to publish it in the market place, https://plugins.jetbrains.com/docs/intellij/deployment.html this article helps a lot however there are two things that aren't ... -
Edited PSI Comment in php files
AnsweredHello everyone, i have a function iterating over a psifile and getting all child nodes of said file. If the psi file is a php.file the function excludes all comments in the file. Does anybody kno... -
Created forcing Intellij to use Headless mode?
AnsweredHello I am writing an idea plugin that also overwrites the Appstarter extension in order to run as command line app. I want it to run in Headless mode but whatever iI do it keeps opening the gui. ... -
Created commandline call of ide disturbs FileTypeIndex?
AnsweredHello everyone, I have written a plugin i can start from commandline or via an action. if i start it via an action everything runs fine. But if i call the plugin via command line following stateme... -
Created Does ProjectManager.getInstance().loadAndOpenProject(filepath); cancel headless mode
AnsweredHello everyone, I have an application i want to run in headless mode. For that i overrite the main function and the isHeadless (to return true) function in the AppstarterService Extension point. i... -
Created Expose plugin to headless mode
AnsweredA few month ago a paper was published ( https://arxiv.org/pdf/2103.12778.pdf ) where they build a psi miner. They stated they build the plugin in a way it can be called in the headless mode of inte... -
Created Get all PSI/Virtual Files within a project
AnsweredI am writing a small Intellij plugin, and in that I need to get all source code files that are within a specific project as PSI/Virtual file (in my understanding both are interexchangeable so it wo... -
Created Keypress Listener
AnsweredHello, I am writing a little plugin in which I want to listen if the user types anything in an editor and then do something based on the keystrokes. I don't need to know which keys exactly are pre... -
Created Access ToggleAction state from Listener
AnsweredI am trying to write a little plugin. Within this plugin I created a ToggleAction registered in the Vew Menu. On the other hand i have some Listener classes that should do stuff when some file was...