Stefan Gehrig

- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Created Plugin context menu not visible when starting from run config with IJ Build #IU-212.4746.92
AnsweredHi Since version Build #IU-212.4746.92 the plugin context menu entry is not shown any more when starting from run config in IDE. plugin.xml: <idea-plugin> <id>com.your.company.unique.plugin.id</id... -
Created Disable code formatting for certain file types in save actions
AnsweredHi We got code formatters for some file type (eg. java, sql...) Is it possible to disable some of them just in save actions, but keep the formatting when pressing ctrl-alt-L? Regrads Stefan -
Edited Class file from PsiJavaFile with IntelliJ 2019.1
AnsweredHi Before IntelliJ 2019.1, I used to fetch Java class files like this: public static FileInfos getClassFileForJavaFile(PsiJavaFile javaFile, String packageName) throws PatchPluginException { PsiCl... -
Created Synchronize global settings to already existing projects
AnsweredHi Is it possible to synchronize global IntelliJ settings to already existing projects automatically? I noticed, that the global settings are synchronized to the .idea project settings, when I crea... -
Created Clearing Cache before running plugin
AnsweredHi all I stick on a problem, clearing the IntelliJ cache before running my plugin. When I run my plugin, an own IntelliJ instance is launched, where I can open different projects and modules. When... -
Created Get packet name of a non-java PsiElement
Hi I got a non-java element selected in a java module. This element is of type PsiElement. Now I want to optain the package name.With java files I got a solution: ((PsiJavaFile) element.getContain... -
Created Class file from PsiJavaFIle
Hi Is it possible to create or get the corresponding, compiled class file out of an existing PsiJavaFile from the project view?I need it for a Java patch plugin in IntelliJ, where we directly patch...