Daniel Alexander Haak
- 活动总数 71
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 16
-
创建于 Saving changes to document
已回答Hello, 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... -
创建于 Publishing intellij plugin
已回答So 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 ... -
已编辑于 PSI Comment in php files
已回答Hello 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... -
创建于 forcing Intellij to use Headless mode?
已回答Hello 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. ... -
创建于 commandline call of ide disturbs FileTypeIndex?
已回答Hello 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... -
创建于 Does ProjectManager.getInstance().loadAndOpenProject(filepath); cancel headless mode
已回答Hello 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... -
创建于 Expose plugin to headless mode
已回答A 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... -
创建于 Get all PSI/Virtual Files within a project
已回答I 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... -
创建于 Keypress Listener
已回答Hello, 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... -
创建于 Access ToggleAction state from Listener
已回答I 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...