Michael Siepmann
- Total activity 27
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 8
-
Created Run multiple gradle-tasks via plugin
AnsweredI'm writing a plugin, whih should call some gradle-tasks. This should not be parallel, but one after one. Currently I'm using ExternalSystemUtil.runTask for calling a task and with IN_BACKGROUND... -
Created ListCellRenderer for PsiReference?
I'm writing a plugin for my company, where I'm using PsiReferenceBase.Immediate(element, it.xmlElement) to create a Reference between an element inside a JSP to a relevant position inside a xml-fil... -
Created Modify a java-class with live-templates
Hi,my plugin should create some java-code in the background. Therfore it opens the class withJavaPsiFacade.getInstance(project).findClass(...)Then, I have some Live-Templates which creates one or m... -
Created LinkedHashMap is a Wrong dependency type
Hi, I'm using the CacheValuesManager for caching a complex calculation. The CachedValue is a Map: private val includeTags: CachedValue<Map<String, Collection<XmlTag>>> This works, but sometimes I... -
Edited Converter creates wrong value for GenericDomValue
Hi, i'm writing a plugin for my company, which handles a special kind of XML-file. Inside this XML, there are some lines like: <template model="ViewModelName">path to a JSP</template> where ViewMod... -
Edited Running a script in a plugin
Hello, i'm writing a plugin for IDEA. Now, i would like to run a script inside it. The language could be Javascript or Kotlin, this is not already defined at the moment. But I have some requirem... -
Created Questions about language plugin
Hi,i'm writing a plugin for a language. the documentation and example on jetbrains.com is good, but leaves some questions open.in a string can be escaped chars like \n, \t etc. how can i mark these...